mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-26 03:21:03 +00:00
932d4720c0
CARGO_HOME's semantic depends on when it's used in the pipeline: - it's the install prefix when installing Cargo - it's the crate cache location when building jobs env.sh is sourced at the start of all jobs and was overidding the CARGO_HOME path defined in the CI template for caching. Fix this by moving the prefix install path to install-rust.sh.
25 lines
678 B
Bash
Executable file
25 lines
678 B
Bash
Executable file
source ./ci/env.sh
|
|
export CARGO_HOME='/usr/local/cargo'
|
|
|
|
RUSTUP_VERSION=1.21.1
|
|
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
|
|
|
|
if [ "$RUST_VERSION" = "stable" ]; then
|
|
rustup component add clippy-preview
|
|
rustup component add rustfmt
|
|
cargo install --force cargo-deny
|
|
cargo install --force --git https://github.com/kbknapp/cargo-outdated
|
|
fi
|