Skip to content

Commit

Permalink
Build macOS artifcates on different platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
BewareMyPower committed Jun 11, 2024
1 parent c01881e commit 7cb00c3
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci-build-binary-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -196,14 +196,20 @@ jobs:
path: ${{ env.INSTALL_DIR }}-Debug

package-macos:
name: Build macOS libraries
runs-on: macos-latest
name: Build macOS libraries (${{ matrix.name }})
runs-on: ${{ matrix.os }}
timeout-minutes: 500

strategy:
fail-fast: false
matrix:
arch: [x86_64, arm64]
include:
- name: 'x86_64'
arch: 'x86_64'
os: macos-13
- name: arm64
arch: arm64
os: macos-13-xlarge

steps:
- name: checkout
Expand Down

0 comments on commit 7cb00c3

Please sign in to comment.