Skip to content

Commit 9ddedf7

Browse files
authored
Update cmake.yml
1 parent b19085f commit 9ddedf7

File tree

1 file changed

+1
-14
lines changed

1 file changed

+1
-14
lines changed

.github/workflows/cmake.yml

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-latest, windows-latest, macos-15-large]
18+
os: [ubuntu-latest, windows-latest]
1919

2020

2121
steps:
@@ -58,19 +58,6 @@ jobs:
5858
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
5959
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTING=ON -DOPENSSL_INCLUDE_DIRECTORY="C:/Program Files/OpenSSL/include" -DOPENSSL_LIBRARY_DIRECTORY="C:/Program Files/OpenSSL/lib/VC" -DOPENSSL_LIBRARIES_BY_MACHINE_TYPE="libssl64MD;libcrypto64MD"
6060

61-
- name: Configure CMake (macOS)
62-
# Use a bash shell so we can use the same syntax for environment variable
63-
# access regardless of the host operating system
64-
shell: bash
65-
if: matrix.os == 'macos-15-large'
66-
working-directory: ${{runner.workspace}}/build
67-
# Note the current convention is to use the -S and -B options here to specify source
68-
# and build directories, but this is only available with CMake 3.13 and higher.
69-
# The CMake binaries on the Github Actions machines are (as of this writing) 3.12
70-
run: |
71-
source ~/.profile
72-
cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DBUILD_TESTING=ON
73-
7461
- name: Build
7562
working-directory: ${{runner.workspace}}/build
7663
shell: bash

0 commit comments

Comments
 (0)