We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04de949 commit 43cf1a1Copy full SHA for 43cf1a1
ci-setup.sh
@@ -9,11 +9,11 @@ echo
9
10
# And of course we need Rust
11
if [[ "$GITHUB_EVENT_NAME" == 'schedule' ]]; then
12
- RUST_TOOLCHAIN=nightly
+ RUSTUP_TOOLCHAIN=nightly
13
else
14
- RUST_TOOLCHAIN=$(cat rust-version)
+ RUSTUP_TOOLCHAIN=$(cat rust-version)
15
fi
16
-echo "Installing Rust version: $RUST_TOOLCHAIN"
17
-rustup toolchain install "$RUST_TOOLCHAIN" --component miri
18
-rustup override set "$RUST_TOOLCHAIN"
+echo "Installing Rust version: $RUSTUP_TOOLCHAIN"
+rustup toolchain install "$RUSTUP_TOOLCHAIN" --component miri
+export RUSTUP_TOOLCHAIN # make rustup use this
19
cargo miri setup
rust-version
@@ -1 +1 @@
1
-nightly-2025-02-01
+nightly-2025-02-11
0 commit comments