We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 889c29a + 12c7df9 commit 955f917Copy full SHA for 955f917
.github/workflows/build.yml
@@ -98,6 +98,8 @@ jobs:
98
ARCH: aarch64
99
OS: macos
100
101
+ # macos-14 runs on arm CPU. see
102
+ # https://github.com/actions/runner-images?tab=readme-ov-file
103
runs-on: macos-14
104
timeout-minutes: 15
105
@@ -136,7 +138,12 @@ jobs:
136
138
ARCH: x86_64
137
139
140
- runs-on: macos-14
141
+ # macos-13 runs on x86 CPU. see
142
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
147
148
149
steps:
0 commit comments