We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3270d81 commit ce16ef4Copy full SHA for ce16ef4
1 file changed
.github/workflows/test.yml
@@ -14,7 +14,9 @@ jobs:
14
runs-on: ${{ matrix.os }}
15
16
strategy:
17
+ fail-fast: false
18
matrix:
19
+ compiler: [native, llvm]
20
os: [ubuntu-latest, macos-latest, windows-latest]
21
22
steps:
@@ -28,8 +30,10 @@ jobs:
28
30
uses: KyleMayes/install-llvm-action@v1
29
31
with:
32
version: "15"
33
+ env: ${{ matrix.compiler == 'llvm' }}
34
+ if: ${{ matrix.compiler == 'llvm' }}
35
- - name: Configure CMake
36
+ - name: Configure
37
run: cmake -Bbuild -DBUILD_TESTS=YES
38
39
- name: Build
0 commit comments