mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
37 lines
1012 B
Bash
37 lines
1012 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: rust.sh
|
|
## Desc: Installs Rust
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/etc-environment.sh
|
|
|
|
export RUSTUP_HOME=/usr/share/rust/.rustup
|
|
export CARGO_HOME=/usr/share/rust/.cargo
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=stable --profile=minimal
|
|
|
|
# Initialize environment variables
|
|
source $CARGO_HOME/env
|
|
|
|
# Install common tools
|
|
rustup component add rustfmt clippy
|
|
cargo install --locked bindgen cbindgen cargo-audit cargo-outdated
|
|
|
|
# Permissions
|
|
chmod -R 777 $(dirname $RUSTUP_HOME)
|
|
|
|
# Cleanup Cargo cache
|
|
rm -rf ${CARGO_HOME}/registry/*
|
|
|
|
# Update /etc/environemnt
|
|
prependEtcEnvironmentPath "${CARGO_HOME}/bin"
|
|
|
|
# Rust Symlinks are added to a default profile /etc/skel
|
|
pushd /etc/skel
|
|
ln -sf $RUSTUP_HOME .rustup
|
|
ln -sf $CARGO_HOME .cargo
|
|
popd
|
|
|
|
invoke_tests "Tools" "Rust" |