File tree Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change 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 :
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
You can’t perform that action at this time.
0 commit comments