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.
1 parent c01881e commit 7cb00c3Copy full SHA for 7cb00c3
.github/workflows/ci-build-binary-artifacts.yaml
@@ -196,14 +196,20 @@ jobs:
196
path: ${{ env.INSTALL_DIR }}-Debug
197
198
package-macos:
199
- name: Build macOS libraries
200
- runs-on: macos-latest
+ name: Build macOS libraries (${{ matrix.name }})
+ runs-on: ${{ matrix.os }}
201
timeout-minutes: 500
202
203
strategy:
204
fail-fast: false
205
matrix:
206
- arch: [x86_64, arm64]
+ include:
207
+ - name: 'x86_64'
208
+ arch: 'x86_64'
209
+ os: macos-13
210
+ - name: arm64
211
+ arch: arm64
212
+ os: macos-13-xlarge
213
214
steps:
215
- name: checkout
0 commit comments