Skip to content

Commit

Permalink
CI: fix Linux extra architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
James-E-A committed Jan 31, 2024
1 parent 8c779a5 commit 99a8441
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python_build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
cibw_archs: x86_64 arm64 universal2
- os: Linux
github_os: ubuntu-20.04
cibw_archs: x86_64 i686 aarch64
cibw_archs: x86_64 i686
- os: Linux (Extra Architectures)
github_os: ubuntu-20.04
cibw_archs: ppc64le s390x
cibw_archs: aarch64 ppc64le s390x

exclude:
- os: Linux (Extra Architectures)
Expand All @@ -67,6 +67,9 @@ jobs:
# Used to host cibuildwheel
- uses: actions/setup-python@v3

- if: matrix.os == "Linux (Extra Architectures)"
uses: docker/setup-qemu-action@v3

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.16.3

Expand Down

0 comments on commit 99a8441

Please sign in to comment.