aboutsummaryrefslogtreecommitdiff
path: root/ci/miri.sh
blob: 5aea2ecd4b500df6ac238e28cd6eda5df9a3752c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
set -ex

# Install Miri.
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

# Run tests.
cargo miri test
cargo miri test --all-features

# Restore old state in case Travis uses this cache for other jobs.
rustup default nightly