Skip to content

Commit ce16ef4

Browse files
committed
Conditional LLVM
1 parent 3270d81 commit ce16ef4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515

1616
strategy:
17+
fail-fast: false
1718
matrix:
19+
compiler: [native, llvm]
1820
os: [ubuntu-latest, macos-latest, windows-latest]
1921

2022
steps:
@@ -28,8 +30,10 @@ jobs:
2830
uses: KyleMayes/install-llvm-action@v1
2931
with:
3032
version: "15"
33+
env: ${{ matrix.compiler == 'llvm' }}
34+
if: ${{ matrix.compiler == 'llvm' }}
3135

32-
- name: Configure CMake
36+
- name: Configure
3337
run: cmake -Bbuild -DBUILD_TESTS=YES
3438

3539
- name: Build

0 commit comments

Comments
 (0)