From e7d571cf8393a013dca7f48a429b5f5007422bc4 Mon Sep 17 00:00:00 2001 From: lafeuil Date: Mon, 16 Sep 2024 09:28:15 +0200 Subject: [PATCH] Add wheel build for the aarch64 architecture in Github actions --- .github/workflows/build-python-wheels.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build-python-wheels.yml b/.github/workflows/build-python-wheels.yml index be723bf1..a43fb0e8 100644 --- a/.github/workflows/build-python-wheels.yml +++ b/.github/workflows/build-python-wheels.yml @@ -38,6 +38,9 @@ jobs: build-linux-wheels: name: Build Linux Python Wheels (+PGO) runs-on: ubuntu-latest + strategy: + matrix: + arch: [none, aarch64] steps: - uses: actions/checkout@v4 @@ -56,6 +59,7 @@ jobs: - uses: eiennohito/gha-manylinux-build@master with: + arch: ${{ matrix.arch }} script: python/build-wheels-manylinux-pgo.sh - uses: actions/upload-artifact@v4