Skip to content

Commit

Permalink
Pre-built packages on ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Jan 21, 2025
1 parent d7e90e4 commit f6e7c2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# We only support MacOS with best-effort basis. They take much longer to build so shouldn't block PR.
SYSTEMS=(x86_64-linux)
else
SYSTEMS=(x86_64-linux x86_64-darwin aarch64-darwin)
SYSTEMS=(x86_64-linux aarch64-linux x86_64-darwin aarch64-darwin)
fi
for SYSTEM in "${SYSTEMS[@]}"; do
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
include: ${{fromJSON(needs.check.outputs.matrix)}}
# Disable fail-fast for non-PR builds to ensure all outputs have a chance to be built.
fail-fast: ${{ github.event_name == 'pull_request' }}
runs-on: ${{ matrix.system == 'x86_64-darwin' && 'macos-13' || (matrix.system == 'aarch64-darwin' && 'macos-14' || 'nixos') }}
runs-on: ${{ matrix.system == 'x86_64-darwin' && 'macos-13' || (matrix.system == 'aarch64-darwin' && 'macos-14' || (matrix.system == 'aarch64-linux' && 'ubuntu-24.04-arm' || 'nixos')) }}
steps:
- name: checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit f6e7c2b

Please sign in to comment.