We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0372e4 commit 42342d4Copy full SHA for 42342d4
.github/workflows/ci.yml
@@ -47,11 +47,7 @@ jobs:
47
with:
48
key: "c++-tests-${{matrix.config.os}}"
49
- name: Configure CMake
50
- 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
+ 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
55
- name: Build
56
run: cmake --build build --config Release
57
- name: Test
0 commit comments