Skip to content

Commit 4368aa4

Browse files
committed
Auto merge of #78 - RalfJung:miri, r=Amanieu
skip Miri tests if the setup fails Currently we are in a situation where Miri can be installed but `cargo miri setup` fails (due to rust-lang/miri#713). That should not lead to hashbrown's CI failing. Cc @gnzlbg
2 parents 538d149 + 419f2ac commit 4368aa4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: ci/miri.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ set -ex
55
export CARGO_NET_RETRY=5
66
export CARGO_NET_TIMEOUT=10
77

8-
if rustup component add miri ; then
9-
cargo miri setup
8+
if rustup component add miri && cargo miri setup ; then
109
cargo miri test -- -- -Zunstable-options --exclude-should-panic
1110
fi

0 commit comments

Comments
 (0)