mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-20 11:38:48 +00: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
|