From f7742341dbd93963ca007dab233e42670e741426 Mon Sep 17 00:00:00 2001 From: Maurice Berk Date: Sat, 27 Apr 2024 07:25:54 +0100 Subject: [PATCH] Include aarch64 as a target on Linux --- .github/workflows/CI.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 8594edf..de3df96 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -6,6 +6,9 @@ on: jobs: linux: + strategy: + matrix: + target: [x86_64, aarch64] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -13,6 +16,7 @@ jobs: with: manylinux: auto command: build + target: ${{ matrix.target }} args: --release --sdist -o dist --find-interpreter - name: Upload wheels uses: actions/upload-artifact@v2 @@ -63,4 +67,4 @@ jobs: MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} with: command: upload - args: --skip-existing * \ No newline at end of file + args: --skip-existing *