Enable ppc64le wheels (#269)

Co-authored-by: Michael Howitz <mh@gocept.com>
This commit is contained in:
Marvin Gießing 2023-04-05 08:46:47 +02:00 committed by GitHub
parent 4b568182e3
commit e9e1ddedfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 2 deletions

View File

@ -433,7 +433,7 @@ jobs:
strategy:
matrix:
python-version: ["3.9"]
image: [manylinux2014_x86_64, manylinux2014_i686, manylinux2014_aarch64]
image: [manylinux2014_x86_64, manylinux2014_i686, manylinux2014_aarch64, manylinux2014_ppc64le]
steps:
- name: checkout
@ -487,6 +487,14 @@ jobs:
# First we must enable emulation
docker run --rm --privileged hypriot/qemu-register
bash .manylinux.sh
- name: Build zope.interface (ppc64le)
if: matrix.image == 'manylinux2014_ppc64le'
env:
DOCKER_IMAGE: quay.io/pypa/${{ matrix.image }}
run: |
# First we must enable emulation
docker run --rm --privileged hypriot/qemu-register
bash .manylinux.sh
- name: Upload zope.interface wheels
uses: actions/upload-artifact@v3

View File

@ -5,7 +5,7 @@
6.1 (unreleased)
================
- Nothing changed yet.
- Add support for building ppc64le wheels.
6.0 (2023-03-17)