Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ jobs:
# HACK: private musllinux_1_1 container build with 3.13 prerelease support
manylinux_img: quay.io/rolpdog/musllinux_1_1_x86_64:latest


- spec: cp39-musllinux_i686
- spec: cp310-musllinux_i686
- spec: cp311-musllinux_i686
Expand Down Expand Up @@ -87,6 +86,21 @@ jobs:
# HACK: private manylinux_2_28 container build with 3.13 prerelease support
manylinux_img: quay.io/rolpdog/manylinux_2_28_aarch64:latest

- spec: cp38-musllinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
- spec: cp39-musllinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
- spec: cp310-musllinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
- spec: cp311-musllinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'
- spec: cp312-musllinux_aarch64
foreign_arch: true
test_args: '{project}/src/c'

- spec: cp38-manylinux_ppc64le
foreign_arch: true
Expand Down Expand Up @@ -144,6 +158,7 @@ jobs:
ldconfig || true
CIBW_ENVIRONMENT_PASS_LINUX: CFLAGS # ensure that the build container can see our overridden build config
CIBW_MANYLINUX_AARCH64_IMAGE: ${{ matrix.manylinux_img || '' }}
CIBW_MUSLLINUX_AARCH64_IMAGE: ${{ matrix.manylinux_img || '' }}
CIBW_MANYLINUX_X86_64_IMAGE: ${{ matrix.manylinux_img || '' }}
CIBW_MUSLLINUX_X86_64_IMAGE: ${{ matrix.manylinux_img || '' }}
CIBW_MANYLINUX_I686_IMAGE: ${{ matrix.manylinux_img || '' }}
Expand Down