Skip to content

Commit

Permalink
add support for linux aarch64 builds in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
planetmarshall committed Dec 30, 2023
1 parent c33b882 commit 947d444
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ jobs:
arch: arm64
- pyversion: cp312
arch: auto32
include:
- os: ubuntu-22.04
arch: aarch64
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -59,6 +62,12 @@ jobs:
with:
arch: ${{ matrix.arch == 'auto64' && 'amd64' || 'amd64_x86' }}

- name: Install QEMU for Arm builds
if: matrix.arch == 'aarch64'
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
Expand Down

0 comments on commit 947d444

Please sign in to comment.