We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02361de commit 9da74e7Copy full SHA for 9da74e7
ci/script.sh
@@ -19,7 +19,11 @@ fi
19
20
$cargo build -v --all $target_param --features "$features"
21
$cargo test -v --all $target_param --features "$features"
22
-$cargo bench -v --all $target_param --features "$features" -- --test # don't actually record numbers
+# 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
27
$cargo doc -v --all $target_param --features "$features"
28
29
$cargo test -v -p primal-sieve --features "$features primal-sieve/safe"
0 commit comments