summaryrefslogtreecommitdiff
path: root/.github/workflows
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 /.github/workflows
parent4b568182e3dafbdfcd093346460656397d542304 (diff)
downloadzope-interface-e9e1ddedfe75d16fca7ccf2cc4b778f077cfe790.tar.gz
Enable ppc64le wheels (#269)
Co-authored-by: Michael Howitz <mh@gocept.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml10
1 files changed, 9 insertions, 1 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