From 899d05067f7f136893410775003bbf61f36933bb Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Fri, 3 Jan 2025 05:59:24 -0700 Subject: [PATCH] ci: build aarch64 wheels (#12) --- .github/workflows/pypi.yaml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yaml b/.github/workflows/pypi.yaml index fcb115c..fcfe048 100644 --- a/.github/workflows/pypi.yaml +++ b/.github/workflows/pypi.yaml @@ -21,12 +21,22 @@ jobs: platform: - runner: ubuntu-latest target: x86_64 + manylinux: auto - runner: ubuntu-latest target: x86 + manylinux: auto + - runner: ubuntu-latest + target: aarch64 + manylinux: "2_28" - runner: ubuntu-latest target: armv7 + manylinux: auto + - runner: ubuntu-latest + target: s390x + manylinux: auto - runner: ubuntu-latest target: ppc64le + manylinux: auto steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 @@ -38,7 +48,7 @@ jobs: target: ${{ matrix.platform.target }} args: --release --out dist --find-interpreter sccache: "true" - manylinux: auto + manylinux: ${{ matrix.platform.manylinux }} - name: Upload wheels uses: actions/upload-artifact@v4 with: