Skip to content

Commit 955f917

Browse files
Merge pull request #873 from lightpanda-io/macos-build
ci: fix macos version for building
2 parents 889c29a + 12c7df9 commit 955f917

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ jobs:
9898
ARCH: aarch64
9999
OS: macos
100100

101+
# macos-14 runs on arm CPU. see
102+
# https://github.com/actions/runner-images?tab=readme-ov-file
101103
runs-on: macos-14
102104
timeout-minutes: 15
103105

@@ -136,7 +138,12 @@ jobs:
136138
ARCH: x86_64
137139
OS: macos
138140

139-
runs-on: macos-14
141+
# macos-13 runs on x86 CPU. see
142+
# https://github.com/actions/runner-images?tab=readme-ov-file
143+
# If we want to build for macos-14 or superior, we need to switch to
144+
# macos-14-large.
145+
# No need for now, but maybe we will need it in the short term.
146+
runs-on: macos-13
140147
timeout-minutes: 15
141148

142149
steps:

0 commit comments

Comments
 (0)