mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-09 00:00:15 +02:00
12 lines
350 B
Bash
12 lines
350 B
Bash
#!/bin/bash
|
|||
|
|
set -e
|
||
|
|
|
||
|
|
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 set profile minimal
|
||
|
|
rustup default "$MIRI_NIGHTLY"
|
||
|
|
rustup component add miri
|
||
|
|
|
||
|
|
cargo miri test
|
||
|
|
cargo miri test --target mips64-unknown-linux-gnuabi64
|