Skip to content

Commit 417e809

Browse files
Add PPC64LE support in CI
1 parent 28d1db1 commit 417e809

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
strategy:
7171
matrix:
7272
os: [ubuntu-latest, macos-latest, windows-latest]
73-
cibw_arch: ["auto64", "aarch64", "universal2"]
73+
cibw_arch: ["auto64", "aarch64", "universal2", "ppc64le"]
7474
cibw_python:
7575
- "cp39"
7676
- "cp310"
@@ -83,10 +83,14 @@ jobs:
8383
cibw_arch: universal2
8484
- os: macos-latest
8585
cibw_arch: aarch64
86+
- os: macos-latest
87+
cibw_arch: ppc64le
8688
- os: windows-latest
8789
cibw_arch: universal2
8890
- os: windows-latest
8991
cibw_arch: aarch64
92+
- os: windows-latest
93+
cibw_arch: ppc64le
9094

9195
defaults:
9296
run:
@@ -102,10 +106,10 @@ jobs:
102106
submodules: true
103107

104108
- name: Set up QEMU
105-
if: matrix.os == 'ubuntu-latest' && matrix.cibw_arch == 'aarch64'
109+
if: matrix.os == 'ubuntu-latest' && (matrix.cibw_arch == 'aarch64' || matrix.cibw_arch == 'ppc64le')
106110
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
107111
with:
108-
platforms: arm64
112+
platforms: arm64,ppc64le
109113

110114
- uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0
111115
env:

0 commit comments

Comments
 (0)