Skip to content

Commit

Permalink
Add arm architectures to build
Browse files Browse the repository at this point in the history
  • Loading branch information
honnibal committed Sep 12, 2024
1 parent e30cd83 commit d894e65
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ jobs:
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, windows-latest, macos-13]
os: [ubuntu-latest, windows-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
# aarch64 (arm) is built via qemu emulation on Linux
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3
with:
platforms: all
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_SOME_OPTION: value
CIBW_ARCHS_LINUX: auto aarch64
with:
package-dir: .
output-dir: wheelhouse
Expand Down

0 comments on commit d894e65

Please sign in to comment.