From b6eaacf1f4eeaaa42b4fb0fca3a8c691aac3b44c Mon Sep 17 00:00:00 2001 From: Kyle Cesare Date: Sat, 21 Sep 2024 18:54:23 -0600 Subject: [PATCH] Add linux/aarch64 to the wheel build target list. --- .github/workflows/python.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/python.yaml b/.github/workflows/python.yaml index c4eacef..0824115 100644 --- a/.github/workflows/python.yaml +++ b/.github/workflows/python.yaml @@ -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 @@ -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"