We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 023d93b commit f1a9830Copy full SHA for f1a9830
2 files changed
.github/workflows/benchmarks.yml
.github/workflows/build.yml
@@ -23,8 +23,21 @@ jobs:
23
- name: Checkout source
24
uses: actions/checkout@v4
25
26
- - name: Setup CMake
27
- uses: lukka/get-cmake@latest
+ - name: Install LLVM (Ubuntu)
+ if: matrix.os == 'ubuntu-latest'
28
+ run: |
29
+ sudo apt-get update
30
+ sudo apt-get install -y llvm-dev libclang-dev clang
31
+
32
+ - name: Install LLVM (macOS)
33
+ if: matrix.os == 'macos-latest'
34
35
+ brew install llvm
36
+ echo "CMAKE_PREFIX_PATH=$(brew --prefix llvm)" >> $GITHUB_ENV
37
38
+ - name: Install LLVM (Windows)
39
+ if: matrix.os == 'windows-latest'
40
+ run: choco install llvm -y
41
42
- name: Configure
43
shell: bash
0 commit comments