Use general arch setting instead of platform-specific setting

This commit is contained in:
Andrew Murray 2024-01-04 11:00:11 +11:00
parent 32ae1bd08a
commit bc3cf97649

View File

@ -76,7 +76,7 @@ jobs:
env:
# Build only the currently selected Linux architecture (so we can
# parallelise for speed).
CIBW_ARCHS_LINUX: "aarch64"
CIBW_ARCHS: "aarch64"
# Likewise, select only one Python version per job to speed this up.
CIBW_BUILD: "${{ matrix.python-version }}-manylinux*"
# Extra options for manylinux.
@ -90,7 +90,7 @@ jobs:
env:
# Build only the currently selected Linux architecture (so we can
# parallelise for speed).
CIBW_ARCHS_LINUX: "aarch64"
CIBW_ARCHS: "aarch64"
# Likewise, select only one Python version per job to speed this up.
CIBW_BUILD: "${{ matrix.python-version }}-${{ matrix.spec }}*"