Skip to content

Commit

Permalink
Add Linux aarch64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
imciner2 committed Jun 21, 2024
1 parent 37c4f5f commit 3931bae
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,8 @@ jobs:
include:
- os: ubuntu-latest
cibw_archs: "x86_64"
# TBD to enable arm64 wheels on Linux
#- os: ubuntu-20.04
# cibw_archs: "aarch64"
- os: ubuntu-latest
cibw_archs: "aarch64"
- os: windows-2022
cibw_archs: "auto64"
# Include macos-13 to get Intel x86_64 macs and maos-latest to get the Aaarch64 macs
Expand All @@ -55,6 +54,13 @@ jobs:
with:
submodules: 'recursive'

# This might not be necessary once ARM runners become available for general use
- name: Set up QEMU
if: matrix.cibw_archs == 'aarch64'
uses: docker/setup-qemu-action@v3
with:
platforms: arm64

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v2
if: startsWith(matrix.os,'windows')
Expand Down

0 comments on commit 3931bae

Please sign in to comment.