From 122d4786c3e82943c8c60a1665dde29b2f21db80 Mon Sep 17 00:00:00 2001 From: Zhen Lu Date: Wed, 27 Sep 2023 18:27:17 -0700 Subject: [PATCH] Update test_python.yml to test aarch64 --- .github/workflows/test_python.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_python.yml b/.github/workflows/test_python.yml index 4129fb9..de5a146 100644 --- a/.github/workflows/test_python.yml +++ b/.github/workflows/test_python.yml @@ -3,15 +3,15 @@ on: [workflow_dispatch] jobs: build-manylinux2014-x86_64-wheels: - name: "Build Manylinux 2014 x86_64 wheel" + name: "Build Manylinux 2014 aarch64 wheel" runs-on: ubuntu-20.04 defaults: run: working-directory: lightspark-crypto-python container: - image: quay.io/pypa/manylinux2014_x86_64 + image: quay.io/pypa/manylinux2014_aarch64 env: - PLAT: manylinux2014_x86_64 + PLAT: manylinux2014_aarch64 PYBIN: "/opt/python/${{ matrix.python }}/bin" strategy: matrix: @@ -32,7 +32,7 @@ jobs: run: bash ./scripts/generate-linux.sh - name: "Build wheel" - run: ${PYBIN}/python setup.py bdist_wheel --plat-name manylinux_2_17_x86_64 --verbose + run: ${PYBIN}/python setup.py bdist_wheel --plat-name manylinux_2_17_aarch64 --verbose - run: pwd - run: ls dist @@ -40,5 +40,5 @@ jobs: - name: "Upload artifacts" uses: actions/upload-artifact@v3 with: - name: lightspark_crypto_python-manylinux2014-x86_64-${{ matrix.python }} + name: lightspark_crypto_python-manylinux2014-aarch64-${{ matrix.python }} path: /home/runner/work/lightspark-crypto-uniffi/lightspark-crypto-python/dist/*.whl