Skip to content

Commit

Permalink
Auto merge of #78 - RalfJung:miri, r=Amanieu
Browse files Browse the repository at this point in the history
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
  • Loading branch information
bors committed May 6, 2019
2 parents 538d149 + 419f2ac commit 4368aa4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ci/miri.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ set -ex
export CARGO_NET_RETRY=5
export CARGO_NET_TIMEOUT=10

if rustup component add miri ; then
cargo miri setup
if rustup component add miri && cargo miri setup ; then
cargo miri test -- -- -Zunstable-options --exclude-should-panic
fi

0 comments on commit 4368aa4

Please sign in to comment.