From 16695d0744ea3be2f3d9c8ee123971f567976ca9 Mon Sep 17 00:00:00 2001 From: Chris Wright Date: Tue, 8 Aug 2023 11:21:55 +0100 Subject: [PATCH] Add arm wheel builds --- .github/workflows/publish.yml | 6 +++++- .github/workflows/test.yml | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 72b95d4..7c7f3e9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,7 +9,10 @@ jobs: linux-wheels: runs-on: ubuntu-latest - container: quay.io/pypa/manylinux_2_28_x86_64 + strategy: + matrix: + container: [quay.io/pypa/manylinux_2_28_x86_64, quay.io/pypa/manylinux2014_aarch64] + container: ${{ matrix.container }} steps: - uses: actions/checkout@v3 with: @@ -22,6 +25,7 @@ jobs: name: linux-wheels path: wheelhouse/ + osx-wheels: runs-on: macos-latest strategy: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad7f3dc..4db06b7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,10 @@ jobs: linux-wheels: runs-on: ubuntu-latest - container: quay.io/pypa/manylinux_2_28_x86_64 + strategy: + matrix: + container: [quay.io/pypa/manylinux_2_28_x86_64, quay.io/pypa/manylinux2014_aarch64] + container: ${{ matrix.container }} steps: - uses: actions/checkout@v3 with: