summaryrefslogtreecommitdiffstats
path: root/vendor/memoffset/ci/miri.sh
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/memoffset/ci/miri.sh')
-rwxr-xr-xvendor/memoffset/ci/miri.sh14
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/memoffset/ci/miri.sh b/vendor/memoffset/ci/miri.sh
deleted file mode 100755
index 5aea2ecd4..000000000
--- a/vendor/memoffset/ci/miri.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-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