2022-03-07 08:26:23 +00:00
|
|
|
source ./ci/env.sh
|
|
|
|
|
2023-08-26 10:59:57 +00:00
|
|
|
RUSTUP_VERSION=1.26.0
|
2022-03-07 08:26:23 +00:00
|
|
|
RUST_VERSION=$1
|
|
|
|
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
|
|
|
|
|
|
|
|
rustup component add clippy-preview
|
|
|
|
rustup component add rustfmt
|
|
|
|
cargo install --force cargo-audit
|
|
|
|
cargo install --force cargo-outdated
|
|
|
|
|
|
|
|
# fetch project deps
|
|
|
|
cargo fetch
|