aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-05 15:19:58 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2025-10-05 15:19:58 +0200
commit7237747ee7f8c53285dc8138cfad9402be1bf77d (patch)
tree6a401291d2c06b8aecb42d6f02cd63a32914ba53 /.github
parent138cc7da1fe1003247182ca199503e43c754c80c (diff)
Try fix macOS Intel nightlies.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nightly.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml
index 2c9dc30ae..d3f14ca9e 100644
--- a/.github/workflows/nightly.yml
+++ b/.github/workflows/nightly.yml
@@ -124,13 +124,13 @@ jobs:
build_macos:
name: MacOS Build
if: github.repository == 'odin-lang/Odin'
- runs-on: macos-13
+ runs-on: macos-14 # Intel machine
steps:
- uses: actions/checkout@v4
- name: Download LLVM and setup PATH
run: |
brew update
- brew install llvm@20 dylibbundler lld
+ brew install llvm@20 dylibbundler lld@20
- name: build odin
# These -L makes the linker prioritize system libraries over LLVM libraries, this is mainly to
@@ -169,7 +169,7 @@ jobs:
- name: Download LLVM and setup PATH
run: |
brew update
- brew install llvm@20 dylibbundler lld
+ brew install llvm@20 dylibbundler lld@20
- name: build odin
# These -L makes the linker prioritize system libraries over LLVM libraries, this is mainly to