2020-04-14 12:10:42 +00:00
|
|
|
source ./ci/env.sh
|
2020-07-28 06:45:11 +00:00
|
|
|
|
|
|
|
set -e
|
2020-04-21 07:36:02 +00:00
|
|
|
export CARGO_HOME='/usr/local/cargo'
|
2020-04-14 12:10:42 +00:00
|
|
|
|
2022-07-18 10:26:17 +00:00
|
|
|
RUSTUP_VERSION=1.25.1
|
2020-04-14 12:10:42 +00:00
|
|
|
RUST_VERSION=$1
|
2020-11-01 07:47:18 +00:00
|
|
|
RUST_IMAGE_FULL=$2
|
2020-04-14 12:10:42 +00:00
|
|
|
RUST_ARCH="x86_64-unknown-linux-gnu"
|
|
|
|
|
|
|
|
RUSTUP_URL=https://static.rust-lang.org/rustup/archive/$RUSTUP_VERSION/$RUST_ARCH/rustup-init
|
|
|
|
wget $RUSTUP_URL
|
|
|
|
|
|
|
|
chmod +x rustup-init;
|
|
|
|
./rustup-init -y --no-modify-path --profile minimal --default-toolchain $RUST_VERSION;
|
|
|
|
rm rustup-init;
|
|
|
|
chmod -R a+w $RUSTUP_HOME $CARGO_HOME
|
|
|
|
|
|
|
|
rustup --version
|
|
|
|
cargo --version
|
|
|
|
rustc --version
|
|
|
|
|
2020-11-01 07:47:18 +00:00
|
|
|
if [ "$RUST_IMAGE_FULL" = "1" ]; then
|
2020-04-14 12:10:42 +00:00
|
|
|
rustup component add clippy-preview
|
|
|
|
rustup component add rustfmt
|
2022-04-07 15:51:20 +00:00
|
|
|
|
2020-02-02 09:19:12 +00:00
|
|
|
cargo install --force cargo-deny
|
2021-11-10 06:40:37 +00:00
|
|
|
cargo install --force cargo-outdated
|
2021-01-08 14:36:07 +00:00
|
|
|
|
2021-05-05 08:17:49 +00:00
|
|
|
# Coverage tools
|
2021-01-08 14:36:07 +00:00
|
|
|
rustup component add llvm-tools-preview
|
2022-04-07 15:51:20 +00:00
|
|
|
cargo install --force grcov
|
|
|
|
fi
|
2021-05-05 08:17:49 +00:00
|
|
|
|
2022-04-07 15:51:20 +00:00
|
|
|
if [ "$RUST_VERSION" = "nightly" ]; then
|
2022-09-04 17:49:19 +00:00
|
|
|
rustup component add rustfmt --toolchain nightly
|
|
|
|
|
2021-05-05 08:17:49 +00:00
|
|
|
# Documentation tools
|
|
|
|
cargo install --force rustdoc-stripper
|
2021-01-08 14:36:07 +00:00
|
|
|
fi
|