Skip to content

Commit 7cb00c3

Browse files
committed
Build macOS artifcates on different platforms
1 parent c01881e commit 7cb00c3

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci-build-binary-artifacts.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,14 +196,20 @@ jobs:
196196
path: ${{ env.INSTALL_DIR }}-Debug
197197

198198
package-macos:
199-
name: Build macOS libraries
200-
runs-on: macos-latest
199+
name: Build macOS libraries (${{ matrix.name }})
200+
runs-on: ${{ matrix.os }}
201201
timeout-minutes: 500
202202

203203
strategy:
204204
fail-fast: false
205205
matrix:
206-
arch: [x86_64, arm64]
206+
include:
207+
- name: 'x86_64'
208+
arch: 'x86_64'
209+
os: macos-13
210+
- name: arm64
211+
arch: arm64
212+
os: macos-13-xlarge
207213

208214
steps:
209215
- name: checkout

0 commit comments

Comments
 (0)