Sha256: 74a9f9adc43f986e81977b03846f7dd00122a0150bd8ec3fe4842a1a787e0f07
Contents?: true
Size: 730 Bytes
Versions: 39
Compression:
Stored size: 730 Bytes
Contents
#!/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
Version data entries
39 entries across 39 versions & 1 rubygems