Skip to content

Commit a0cab74

Browse files
committed
install llvm@15
Change-Id: I79aa47c1cd155bc095ed69986e6a8281f5015c4e
1 parent 5a92e40 commit a0cab74

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/macos-scan-build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,18 @@ jobs:
3030
exit 1
3131
}
3232
33+
- name: install brew
34+
run: |
35+
brew install llvm@15
36+
3337
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3438
with:
3539
submodules: recursive
3640
- name: cmake
3741
run: |
3842
rm -rf ${{ github.workspace }}/build
39-
$(brew --prefix llvm@15)/bin/scan-build cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}
43+
/usr/local/opt/llvm@15/bin/scan-build cmake -B ${{ github.workspace }}/build -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}
4044
- name: make
4145
run: |
4246
cd ${{ github.workspace }}/build
43-
$(brew --prefix llvm@15)/bin/scan-build --exclude src/simdjson --status-bugs make -j
47+
/usr/local/opt/llvm@15/bin/scan-build --exclude src/simdjson --status-bugs make -j

0 commit comments

Comments
 (0)