Skip to content

Commit

Permalink
disable miri on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
taiki-e committed Oct 9, 2020
1 parent 77cb6aa commit bb2a864
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ci/miri.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ set -ex

export RUSTFLAGS="-D warnings"

if [[ "$OSTYPE" != "linux"* ]]; then
exit 0
fi

MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri)
rustup set profile minimal
rustup update "$MIRI_NIGHTLY"
Expand Down

0 comments on commit bb2a864

Please sign in to comment.