-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build ARM packages for all Python versions
- Loading branch information
Showing
1 changed file
with
2 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,10 +40,8 @@ jobs: | |
matrix: | ||
include: | ||
- arch: auto64 # native 64-bit | ||
skip: "pp* *-musllinux_* cp36* cp37* cp38*" # no PyPy or musl builds, no older Python versions | ||
- arch: aarch64 | ||
skip: "pp* *-musllinux_* cp36* cp37* cp38* cp310* cp312*" # qemu builds are incredibly slow, so only do 3.9 and 3.11 | ||
# TODO: when github actions gets native aarch64 runners, we can ditch qemu and not worry about the emulation performance | ||
# TODO: when github actions gets native aarch64 runners, ditch qemu, it will be much faster | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -64,7 +62,7 @@ jobs: | |
uses: pypa/[email protected] | ||
env: | ||
CIBW_ARCHS: ${{ matrix.arch }} | ||
CIBW_SKIP: ${{ matrix.skip }} | ||
CIBW_SKIP: "pp* *-musllinux_* cp36* cp37* cp38*" # no PyPy or musl builds, no older Python versions | ||
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28 # alma 8 | ||
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28 | ||
CIBW_BEFORE_ALL_LINUX: dnf -y install epel-release && yes | dnf -y builddep createrepo_c.spec | ||
|