We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01f4461 commit afce80dCopy full SHA for afce80d
.github/workflows/ci.yml
@@ -53,8 +53,14 @@ jobs:
53
vcpkg install jsoncpp gtest
54
55
- name: Configure CMake
56
+ if: runner.os != 'macOS'
57
run: |
58
cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
59
+
60
+ - name: Configure CMake (macOS)
61
+ if: runner.os == 'macOS'
62
+ run: |
63
+ cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=./vcpkg/scripts/buildsystems/vcpkg.cmake ${{ matrix.cmake_args }}
64
65
- name: Build
66
run: cmake --build build --config ${{ matrix.build_type }}
0 commit comments