Skip to content
Open
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
30 changes: 29 additions & 1 deletion .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,33 @@ jobs:
image: 'musllinux_1_1'
- py: 'cp314t'
image: 'musllinux_1_1'
include:
# riscv64 only has manylinux_2_28 (no manylinux2014, no musllinux).
# Using include entries to bypass the manylinux_2_28 excludes above.
- py: 'cp310'
arch: 'riscv64'
abi: 'manylinux'
image: 'manylinux_2_28'
- py: 'cp311'
arch: 'riscv64'
abi: 'manylinux'
image: 'manylinux_2_28'
- py: 'cp312'
arch: 'riscv64'
abi: 'manylinux'
image: 'manylinux_2_28'
- py: 'cp313'
arch: 'riscv64'
abi: 'manylinux'
image: 'manylinux_2_28'
- py: 'cp314'
arch: 'riscv64'
abi: 'manylinux'
image: 'manylinux_2_28'
- py: 'cp314t'
arch: 'riscv64'
abi: 'manylinux'
image: 'manylinux_2_28'
runs-on: ${{ matrix.arch == 'aarch64' && 'ubuntu-22.04-arm' || 'ubuntu-22.04' }}
env:
CIBW_ARCHS: ${{ matrix.arch }}
Expand All @@ -81,6 +108,7 @@ jobs:
CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/${{ matrix.image }}_i686:latest
CIBW_MANYLINUX_PPC64LE_IMAGE: quay.io/pypa/${{ matrix.image }}_ppc64le:latest
CIBW_MANYLINUX_S390X_IMAGE: quay.io/pypa/${{ matrix.image }}_s390x:latest
CIBW_MANYLINUX_RISCV64_IMAGE: quay.io/pypa/${{ matrix.image }}_riscv64:latest
CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/${{ matrix.image }}_x86_64:latest
CIBW_MUSLLINUX_AARCH64_IMAGE: quay.io/pypa/${{ matrix.image }}_aarch64:latest
CIBW_MUSLLINUX_I686_IMAGE: quay.io/pypa/${{ matrix.image }}_i686:latest
Expand All @@ -98,7 +126,7 @@ jobs:
version: "0.8.11"

- name: Set up QEMU
if: ${{ matrix.arch == 'ppc64le' || matrix.arch == 's390x' }}
if: ${{ matrix.arch == 'ppc64le' || matrix.arch == 's390x' || matrix.arch == 'riscv64' }}
uses: docker/setup-qemu-action@29109295f81e9208d7d86ff1c6c12d2833863392 # v3.6.0

- name: Build wheels
Expand Down