Skip to content

Commit c390110

Browse files
committed
Fix CI failure
Apparently there were some updates which meant that there wasn't a default LLVM version installed anymore?
1 parent 96ffabe commit c390110

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
@@ -18,8 +18,12 @@ jobs:
1818
steps:
1919
- name: Checkout
2020
uses: actions/checkout@v2
21+
- name: install Clang
22+
# Note: picking LLVM 15 because that's the one currently included in
23+
# macos-latest. This probably needs an update in the future.
24+
run: brew install llvm@15
2125
- name: Run tests
22-
run: make test CLANG=$(brew --prefix llvm)/bin/clang
26+
run: make test CLANG=$(brew --prefix llvm@15)/bin/clang
2327
Test-Windows:
2428
runs-on: windows-latest
2529
steps:

0 commit comments

Comments
 (0)