Skip to content

Commit

Permalink
Temporarily ignore i686 bench
Browse files Browse the repository at this point in the history
  • Loading branch information
cuviper committed Feb 16, 2022
1 parent 02361de commit 9da74e7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ fi

$cargo build -v --all $target_param --features "$features"
$cargo test -v --all $target_param --features "$features"
$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
# https://github.com/rust-lang/rust/issues/94032
if [ -z "$TARGET" ]; then
$cargo bench -v --all $target_param --features "$features" -- --test # don't actually record numbers
fi
$cargo doc -v --all $target_param --features "$features"

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

0 comments on commit 9da74e7

Please sign in to comment.