Skip to content

Commit 9da74e7

Browse files
committed
Temporarily ignore i686 bench
1 parent 02361de commit 9da74e7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ci/script.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ fi
1919

2020
$cargo build -v --all $target_param --features "$features"
2121
$cargo test -v --all $target_param --features "$features"
22-
$cargo bench -v --all $target_param --features "$features" -- --test # don't actually record numbers
22+
# Temporarily ignoring bench on other targets due to an i686 regression in rustc
23+
# https://github.com/rust-lang/rust/issues/94032
24+
if [ -z "$TARGET" ]; then
25+
$cargo bench -v --all $target_param --features "$features" -- --test # don't actually record numbers
26+
fi
2327
$cargo doc -v --all $target_param --features "$features"
2428

2529
$cargo test -v -p primal-sieve --features "$features primal-sieve/safe"

0 commit comments

Comments
 (0)