-
Notifications
You must be signed in to change notification settings - Fork 147
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thom Chiovoloni
committed
Sep 8, 2019
1 parent
ea5f7e1
commit a50739f
Showing
2 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/bash | ||
|
||
set -ex | ||
|
||
# Install and run the latest version of nightly where miri built successfully. | ||
# Taken from: https://github.com/rust-lang/miri#running-miri-on-ci | ||
|
||
MIRI_NIGHTLY=nightly-$(curl -s https://rust-lang.github.io/rustup-components-history/x86_64-unknown-linux-gnu/miri) | ||
echo "Installing latest nightly with Miri: $MIRI_NIGHTLY" | ||
rustup default "$MIRI_NIGHTLY" | ||
|
||
rustup component add miri | ||
cargo miri setup | ||
|
||
cargo miri test --verbose -- -- -Zunstable-options --exclude-should-panic | ||
cargo miri test --verbose --features union -- -- -Zunstable-options --exclude-should-panic | ||
cargo miri test --verbose --all-features -- -- -Zunstable-options --exclude-should-panic |