aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorLaytan Laats <laytanlaats@hotmail.com>2025-05-09 17:21:08 +0200
committerLaytan Laats <laytanlaats@hotmail.com>2025-05-09 23:13:06 +0200
commit8374854dd557accf3ad8a0136ae1ff5867bc9a29 (patch)
tree60d446425e143166757237e0a9acee2a27d0a40f /.github
parent221dea76a42a4e41ff3f9a1b889f1439f54287b9 (diff)
use brew clang instead of system clang
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 590c52feb..8ae39667b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -88,12 +88,14 @@ jobs:
run: |
brew update
brew install llvm@20 lua@5.4 lld
+ echo "$(brew --prefix llvm@20)/bin" >> $GITHUB_PATH
- name: Download LLVM (MacOS ARM)
if: matrix.os == 'macos-14'
run: |
brew update
brew install llvm@20 wasmtime lua@5.4 lld
+ echo "$(brew --prefix llvm@20)/bin" >> $GITHUB_PATH
- name: Download LLVM (Ubuntu)
if: matrix.os == 'ubuntu-latest'