mirror of
https://github.com/openharmony/third_party_rust_rust-smallvec.git
synced 2026-07-18 12:56:10 -04:00
Run miri in CI, and bump MSRV
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
#!/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 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
|
||||
Reference in New Issue
Block a user