mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-02 13:06:40 +00:00
8 lines
267 B
Bash
Executable File
8 lines
267 B
Bash
Executable File
set -ex
|
|
|
|
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
|