summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Gießing <marvin.giessing@gmail.com>2023-04-05 08:46:47 +0200
committerGitHub <noreply@github.com>2023-04-05 06:46:47 +0000
commite9e1ddedfe75d16fca7ccf2cc4b778f077cfe790 (patch)
tree170a9ee1455f10a53214becfb98cedccb89d4fc0
parent4b568182e3dafbdfcd093346460656397d542304 (diff)
downloadzope-interface-e9e1ddedfe75d16fca7ccf2cc4b778f077cfe790.tar.gz
Enable ppc64le wheels (#269)
Co-authored-by: Michael Howitz <mh@gocept.com>
-rw-r--r--.github/workflows/tests.yml10
-rw-r--r--CHANGES.rst2
2 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 68d1aee..8701ee9 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -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
diff --git a/CHANGES.rst b/CHANGES.rst
index 9e313c2..1b47806 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -5,7 +5,7 @@
6.1 (unreleased)
================
-- Nothing changed yet.
+- Add support for building ppc64le wheels.
6.0 (2023-03-17)