mirror of
https://git.proxmox.com/git/rustc
synced 2025-11-07 03:18:24 +00:00
16 lines
340 B
Bash
Executable File
16 lines
340 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
export CARGO_NET_RETRY=5
|
|
export CARGO_NET_TIMEOUT=10
|
|
|
|
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
|