We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 352f932 commit 6db741eCopy full SHA for 6db741e
.github/workflows/ci.yml
@@ -47,7 +47,11 @@ jobs:
47
with:
48
key: "c++-tests-${{matrix.config.os}}"
49
- name: Configure CMake
50
- run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_QMAP_TESTS=ON ${{ matrix.config.toolchain }} -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache
+ if: matrix.config.os != 'windows-latest'
51
+ run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DBUILD_QMAP_TESTS=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache
52
+ - name: Configure CMake
53
+ if: matrix.config.os == 'windows-latest'
54
+ run: cmake -S . -B build -G "Ninja" -DCMAKE_BUILD_TYPE=Release -DBUILD_QMAP_TESTS=ON -DCMAKE_CXX_COMPILER_LAUNCHER=ccache -DCMAKE_C_COMPILER_LAUNCHER=ccache
55
- name: Build
56
run: cmake --build build --config Release
57
- name: Test
0 commit comments