mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer-rs.git
synced 2024-11-11 12:01:25 +00:00
9c141a2fbf
And for now we stay at 1.46.0 because 1.47.0 has a bug that prevents clippy from succeeding.
28 lines
670 B
Bash
Executable file
28 lines
670 B
Bash
Executable file
source ./ci/env.sh
|
|
|
|
set -e
|
|
export CARGO_HOME='/usr/local/cargo'
|
|
|
|
RUSTUP_VERSION=1.22.1
|
|
RUST_VERSION=$1
|
|
RUST_IMAGE_FULL=$2
|
|
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_IMAGE_FULL" = "1" ]; then
|
|
rustup component add clippy-preview
|
|
rustup component add rustfmt
|
|
cargo install --force cargo-deny
|
|
cargo install --force cargo-outdated
|
|
fi
|