Skip to content

Commit 8d3643f

Browse files
authored
[ci]: Disable wheel testing on ppc64le (#16793)
## Summary The PPC64le wheel testing job spuriously failes due to some race when installing python dependencies. This is very annoying because it requires restarting the release process over and over again until you're lucky and it passes. This PR disables wheel testing on PPC64le This is the same as we did in uv, see astral-sh/uv#11231 ## Test Plan The wheel test step was skipped in CI, see https://github.com/astral-sh/ruff/actions/runs/13895143309/job/38874065160?pr=16793 but it still runs for other targets
1 parent 50b66dc commit 8d3643f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build-binaries.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ jobs:
311311
docker-options: ${{ matrix.platform.maturin_docker_options }}
312312
args: --release --locked --out dist
313313
- uses: uraimo/run-on-arch-action@ac33288c3728ca72563c97b8b88dda5a65a84448 # v2
314-
if: matrix.platform.arch != 'ppc64'
314+
if: ${{ matrix.platform.arch != 'ppc64' && matrix.platform.arch != 'ppc64le'}}
315315
name: Test wheel
316316
with:
317317
arch: ${{ matrix.platform.arch == 'arm' && 'armv6' || matrix.platform.arch }}

0 commit comments

Comments
 (0)