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 c4502de commit 842510cCopy full SHA for 842510c
.github/workflows/test.yml
@@ -38,8 +38,13 @@ jobs:
38
echo "CXX=clang++" >> $GITHUB_ENV
39
if: ${{ matrix.os == 'windows-latest' && matrix.compiler != 'native'}}
40
41
- - name: Configure
+ - name: Configure with default compiler
42
run: cmake -B build -DCPPSPEC_BUILD_TESTS=YES
43
+ if: ${{ matrix.compiler == 'native'}}
44
+
45
+ - name: Configure with specific compiler
46
+ run: cmake -B build -DCPPSPEC_BUILD_TESTS=YES -DCMAKE_C_COMPILER="$CC" -DCMAKE_CXX_COMPILER="$CXX"
47
+ if: ${{ matrix.compiler != 'native'}}
48
49
- name: Build
50
run: cmake --build build --config Release
0 commit comments