diff options
| author | Laytan <laytanlaats@hotmail.com> | 2025-04-02 21:24:12 +0200 |
|---|---|---|
| committer | Laytan <laytanlaats@hotmail.com> | 2025-04-02 21:24:12 +0200 |
| commit | 4eef57c6f1f7e64f774e6982902dc5e85e740a38 (patch) | |
| tree | 6de72adc04876d658b8737e251683f43fef1deab | |
| parent | 85b3a79a258d1e39d3cf83b3e56d11ffee7924be (diff) | |
ci: ok, had to brew update, can we now request @20 directly?
| -rw-r--r-- | .github/workflows/ci.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/nightly.yml | 6 |
2 files changed, 4 insertions, 8 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 860ba08a5..1a1d18231 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,15 +94,13 @@ jobs: if: matrix.os == 'macos-13' run: | brew update - brew install llvm lua@5.4 lld - brew --prefix llvm@20 # Verifies it is LLVM 20 + brew install llvm@20 lua@5.4 lld - name: Download LLVM (MacOS ARM) if: matrix.os == 'macos-14' run: | brew update - brew install llvm wasmtime lua@5.4 lld - brew --prefix llvm@20 # Verifies it is LLVM 20 + brew install llvm@20 wasmtime lua@5.4 lld - name: Build Odin run: ./build_odin.sh release diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 76052743c..eb67eb209 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -94,8 +94,7 @@ jobs: - name: Download LLVM and setup PATH run: | brew update - brew install llvm dylibbundler lld - brew --prefix llvm@20 # Verifies it is LLVM 20 + brew install llvm@20 dylibbundler lld - name: build odin # These -L makes the linker prioritize system libraries over LLVM libraries, this is mainly to @@ -133,8 +132,7 @@ jobs: - name: Download LLVM and setup PATH run: | brew update - brew install llvm dylibbundler lld - brew --prefix llvm@20 # Verifies it is LLVM 20 + brew install llvm@20 dylibbundler lld - name: build odin # These -L makes the linker prioritize system libraries over LLVM libraries, this is mainly to |