Skip to content

Commit 9e26bd8

Browse files
committed
ci: Don't run ctest self tests on loongarch
Currently rustix doesn't compile due to a new conflicting import with rustix. Resolve this by excluding the crates that need `rustix` (via `tempfile`) as a dependency.
1 parent bbafd45 commit 9e26bd8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ci/run.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ case "$target" in
2222
*) cmd="$cmd --workspace" ;;
2323
esac
2424

25-
# garando_errors only compiles on `cfg(any(unix, windows))`
2625
case "$target" in
26+
# garando_errors only compiles on `cfg(any(unix, windows))`
2727
*wasm*) cmd="$cmd --exclude ctest --exclude ctest-test --exclude ctest-next" ;;
28+
# https://github.com/bytecodealliance/rustix/issues/1496
29+
*loongarch*) cmd="$cmd --exclude ctest --exclude ctest-test --exclude ctest-next" ;;
2830
esac
2931

3032
if [ "$target" = "s390x-unknown-linux-gnu" ]; then

0 commit comments

Comments
 (0)