Skip to content

Commit 48a57c4

Browse files
committed
ci: Skip running ctest on ppc64le-musl
The issue building rustix that we hit with loongarch is now being hit with ppc64le.
1 parent 075c118 commit 48a57c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ci/run.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ esac
2828
case "$target" in
2929
# crash in std::env::tmp_dir (no filesystem on wasm).
3030
*wasm*) cmd="$cmd --exclude ctest --exclude ctest-test --exclude ctest-next" ;;
31+
# Loongarch was fixed, but there are new instances of
3132
# https://github.com/bytecodealliance/rustix/issues/1496
32-
*loongarch*) cmd="$cmd --exclude ctest --exclude ctest-test --exclude ctest-next" ;;
33+
powerpc64le*musl) cmd="$cmd --exclude ctest --exclude ctest-test --exclude ctest-next" ;;
3334
esac
3435

3536
# shellcheck disable=SC2086

0 commit comments

Comments
 (0)