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 8cfebc7 commit d5e2232Copy full SHA for d5e2232
.buildbot.sh
@@ -6,11 +6,13 @@ export CARGO_HOME="`pwd`/.cargo"
6
export RUSTUP_HOME="`pwd`/.rustup"
7
8
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs > rustup.sh
9
-# Install no toolchain initially to ensure toolchain rollback.
10
-sh rustup.sh --default-host x86_64-unknown-linux-gnu --default-toolchain none -y --no-modify-path
11
-
+sh rustup.sh --default-host x86_64-unknown-linux-gnu \
+ --default-toolchain nightly \
+ --no-modify-path \
12
+ --profile minimal \
13
+ -y
14
export PATH=`pwd`/.cargo/bin/:$PATH
-rustup install nightly
15
+cargo check
16
17
+rustup toolchain install nightly --allow-downgrade --component rustfmt
18
cargo +nightly fmt --all -- --check
-cargo check
0 commit comments