From 417e8091dd8dca063d1e49c5d6785173439744c3 Mon Sep 17 00:00:00 2001 From: Sunidhi Gaonkar Date: Tue, 12 May 2026 10:07:03 +0530 Subject: [PATCH] Add PPC64LE support in CI --- .github/workflows/release.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f694bb4..2ce58b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -70,7 +70,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - cibw_arch: ["auto64", "aarch64", "universal2"] + cibw_arch: ["auto64", "aarch64", "universal2", "ppc64le"] cibw_python: - "cp39" - "cp310" @@ -83,10 +83,14 @@ jobs: cibw_arch: universal2 - os: macos-latest cibw_arch: aarch64 + - os: macos-latest + cibw_arch: ppc64le - os: windows-latest cibw_arch: universal2 - os: windows-latest cibw_arch: aarch64 + - os: windows-latest + cibw_arch: ppc64le defaults: run: @@ -102,10 +106,10 @@ jobs: submodules: true - name: Set up QEMU - if: matrix.os == 'ubuntu-latest' && matrix.cibw_arch == 'aarch64' + if: matrix.os == 'ubuntu-latest' && (matrix.cibw_arch == 'aarch64' || matrix.cibw_arch == 'ppc64le') uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 with: - platforms: arm64 + platforms: arm64,ppc64le - uses: pypa/cibuildwheel@7c619efba910c04005a835b110b057fc28fd6e93 # v3.2.0 env: