Skip to content

Commit

Permalink
Add linux/aarch64 to the wheel build target list.
Browse files Browse the repository at this point in the history
  • Loading branch information
kylc committed Sep 22, 2024
1 parent ed2bdb9 commit b6eaacf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@ jobs:
include:
- os: ubuntu-latest
target: x86_64
cross: false
- os: ubuntu-latest
target: aarch64
cross: true
- os: macos-13
target: x86_64
cross: false
- os: macos-14
target: aarch64
cross: false

steps:
- name: checkout
Expand All @@ -39,6 +45,7 @@ jobs:
pip3 install delocate
delocate-wheel -v dist/*.whl
- name: install built wheel
if: ${{ ! matrix.cross }}
run: |
pip3 install optik-py --no-index --find-links dist
python3 -c "import optik"
Expand Down

0 comments on commit b6eaacf

Please sign in to comment.