2022-04-18 03:09:48 +08:00
|
|
|
name: Setup Rust Toolchain for GitHub CI
|
|
|
|
description: |
|
2022-04-21 04:24:25 +08:00
|
|
|
Setup specific Rust versions with caching pre-configured.
|
|
|
|
It provides problem matchers for cargo and rustfmt issues.
|
2022-04-18 03:09:48 +08:00
|
|
|
|
|
|
|
branding:
|
|
|
|
icon: "play"
|
|
|
|
color: "gray-dark"
|
|
|
|
|
|
|
|
# Add option to install directly from rust-toolchain file
|
|
|
|
# Blocked on rustup support: https://github.com/rust-lang/rustup/issues/2686
|
|
|
|
#
|
|
|
|
# The action is heavily inspired by https://github.com/dtolnay/rust-toolchain
|
|
|
|
inputs:
|
|
|
|
toolchain:
|
|
|
|
description: "Rust toolchain specification -- see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification"
|
|
|
|
required: false
|
|
|
|
default: "stable"
|
|
|
|
target:
|
|
|
|
description: "Target triple to install for this toolchain"
|
|
|
|
required: false
|
|
|
|
components:
|
|
|
|
description: "Comma-separated list of components to be additionally installed"
|
|
|
|
required: false
|
2022-07-31 02:01:03 +08:00
|
|
|
cache:
|
|
|
|
description: "Automatically configure Rust cache"
|
|
|
|
required: false
|
|
|
|
default: "true"
|
2022-04-18 03:09:48 +08:00
|
|
|
|
|
|
|
outputs:
|
|
|
|
rustc-version:
|
|
|
|
description: "Version as reported by `rustc --version`"
|
|
|
|
value: ${{steps.versions.outputs.rustc-version}}
|
|
|
|
cargo-version:
|
|
|
|
description: "Version as reported by `cargo --version`"
|
|
|
|
value: ${{steps.versions.outputs.cargo-version}}
|
|
|
|
rustup-version:
|
|
|
|
description: "Version as reported by `rustup --version`"
|
|
|
|
value: ${{steps.versions.outputs.rustup-version}}
|
2022-07-20 03:00:36 +08:00
|
|
|
cachekey:
|
|
|
|
description: A short hash of the rustc version, appropriate for use as a cache key. "20220627a831"
|
|
|
|
value: ${{steps.versions.outputs.cachekey}}
|
2022-04-18 03:09:48 +08:00
|
|
|
|
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
|
|
|
- id: flags
|
|
|
|
run: |
|
|
|
|
: construct rustup command line
|
|
|
|
echo "::set-output name=targets::$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)"
|
|
|
|
echo "::set-output name=components::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)"
|
|
|
|
echo "::set-output name=downgrade::${{inputs.toolchain == 'nightly' && inputs.components && ' --allow-downgrade' || ''}}"
|
|
|
|
env:
|
|
|
|
targets: ${{inputs.target}}
|
|
|
|
components: ${{inputs.components}}
|
|
|
|
shell: bash
|
2022-07-30 04:28:32 +08:00
|
|
|
# The environment variables always need to be set before the caching action
|
|
|
|
- name: "Setting Environment Variables"
|
|
|
|
run: |
|
|
|
|
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV
|
|
|
|
echo "CARGO_PROFILE_DEV_DEBUG=0" >> $GITHUB_ENV
|
|
|
|
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
|
|
|
|
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
|
|
|
|
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
- name: "Install Rust Problem Matcher"
|
|
|
|
run: echo "::add-matcher::${{ github.action_path }}/rust.json"
|
|
|
|
shell: bash
|
|
|
|
|
2022-07-20 02:48:19 +08:00
|
|
|
- name: Install rustup, if needed
|
|
|
|
run: |
|
|
|
|
if ! command -v rustup &> /dev/null ; then
|
|
|
|
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
|
|
|
|
echo "${CARGO_HOME:-~/.cargo}/bin" >> $GITHUB_PATH
|
|
|
|
fi
|
|
|
|
if: runner.os != 'Windows'
|
|
|
|
shell: bash
|
2022-04-18 03:09:48 +08:00
|
|
|
- name: rustup toolchain install ${{inputs.toolchain}}
|
|
|
|
run: |
|
2022-07-22 04:35:59 +08:00
|
|
|
if [[ -f "rust-toolchain" || -f "rust-toolchain.toml" ]]
|
|
|
|
then
|
|
|
|
# Install the toolchain as specified in the file
|
|
|
|
# Might break at some point: https://github.com/rust-lang/rustup/issues/1397
|
|
|
|
rustup show
|
|
|
|
else
|
|
|
|
rustup toolchain install ${{inputs.toolchain}}${{steps.flags.outputs.targets}}${{steps.flags.outputs.components}} --profile minimal${{steps.flags.outputs.downgrade}} --no-self-update
|
|
|
|
rustup default ${{inputs.toolchain}}
|
|
|
|
fi
|
2022-04-18 03:09:48 +08:00
|
|
|
shell: bash
|
2022-07-20 03:00:36 +08:00
|
|
|
|
2022-04-18 03:09:48 +08:00
|
|
|
- name: Print installed versions
|
|
|
|
id: versions
|
|
|
|
run: |
|
2022-07-22 04:35:59 +08:00
|
|
|
echo "::set-output name=rustc-version::$(rustc --version)"
|
|
|
|
rustc --version --verbose
|
|
|
|
echo "::set-output name=cargo-version::$(cargo --version)"
|
|
|
|
cargo --version --verbose
|
|
|
|
echo "::set-output name=rustup-version::$(rustup --version)"
|
|
|
|
rustup --version
|
2022-07-20 03:00:36 +08:00
|
|
|
|
2022-07-22 04:35:59 +08:00
|
|
|
DATE=$(rustc --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p')
|
|
|
|
HASH=$(rustc --version --verbose | sed -ne 's/^commit-hash: //p')
|
2022-07-20 03:00:36 +08:00
|
|
|
echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)"
|
2022-04-18 03:09:48 +08:00
|
|
|
shell: bash
|
|
|
|
|
|
|
|
- name: "Setup Rust Caching"
|
2022-07-31 02:01:03 +08:00
|
|
|
if: inputs.cache == 'true'
|
2022-07-20 03:01:40 +08:00
|
|
|
uses: Swatinem/rust-cache@v2
|