Skip to content

Commit

Permalink
add multiarch
Browse files Browse the repository at this point in the history
  • Loading branch information
bkochauri-memphis committed Sep 9, 2024
1 parent 12137c1 commit 3ae0598
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
os: [ubuntu-latest]
arch: [x86_64, aarch64] # Use 'aarch64' for Linux ARM builds, 'x86_64' for AMD/Intel
exclude:
- os: windows-latest
arch: aarch64 # Windows doesn't support aarch64

steps:
- uses: actions/checkout@v4
Expand All @@ -24,7 +21,7 @@ jobs:
run: python -m pip install cibuildwheel==2.20.0

- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse --verbose
run: python -m cibuildwheel --output-dir wheelhouse
env:
CIBW_ARCHS: ${{ matrix.arch }} # Use aarch64 for ARM on Linux

Expand Down

0 comments on commit 3ae0598

Please sign in to comment.