aboutsummaryrefslogtreecommitdiff
path: root/vendor/smallvec/scripts/run_miri.sh
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/smallvec/scripts/run_miri.sh
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/smallvec/scripts/run_miri.sh')
-rw-r--r--vendor/smallvec/scripts/run_miri.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/vendor/smallvec/scripts/run_miri.sh b/vendor/smallvec/scripts/run_miri.sh
deleted file mode 100644
index 010ceb0..0000000
--- a/vendor/smallvec/scripts/run_miri.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/bash
-
-set -ex
-
-# Clean out our target dir, which may have artifacts compiled by a version of
-# rust different from the one we're about to download.
-cargo clean
-
-# 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 override unset
-rustup default "$MIRI_NIGHTLY"
-
-rustup component add miri
-cargo miri setup
-
-cargo miri test --verbose
-cargo miri test --verbose --features union
-cargo miri test --verbose --all-features
-
-rustup override set nightly