rust-toolchain/action.yml

72 lines
2.6 KiB
YAML
Raw Normal View History

name: rustup toolchain install
author: David Tolnay
description: Install the Rust toolchain
2022-06-24 21:48:26 +03:00
branding:
icon: activity
color: purple
inputs:
toolchain:
description: Rust toolchain specification -- see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification
required: true
2022-07-19 19:21:41 +03:00
targets:
description: Comma-separated list of target triples to install for this toolchain
required: false
2021-10-09 06:11:52 +03:00
target:
2022-07-19 19:21:41 +03:00
description: Alias for `targets`
2021-10-09 06:11:52 +03:00
required: false
components:
description: Comma-separated list of components to be additionally installed
required: false
outputs:
2022-07-15 20:40:08 +03:00
cachekey:
description: A short hash of the rustc version, appropriate for use as a cache key. "20220627a831"
value: ${{steps.rustc-version.outputs.cachekey}}
runs:
using: composite
steps:
- id: flags
run: |
: construct rustup command line
2021-10-09 08:04:03 +03:00
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:
2022-07-21 00:55:40 +03:00
targets: ${{inputs.targets || inputs.target || ''}}
components: ${{inputs.components}}
shell: bash
2022-07-20 23:23:41 +03:00
- run: |
: install rustup if needed
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:-$HOME/.cargo}/bin" >> $GITHUB_PATH
fi
if: runner.os != 'Windows'
shell: bash
2022-07-20 23:23:41 +03:00
- name: rustup toolchain install ${{inputs.toolchain}}
run: rustup toolchain install ${{inputs.toolchain}}${{steps.flags.outputs.targets}}${{steps.flags.outputs.components}} --profile minimal${{steps.flags.outputs.downgrade}} --no-self-update
shell: bash
2022-07-20 23:23:41 +03:00
- run: rustup default ${{inputs.toolchain}}
shell: bash
2022-07-20 23:23:41 +03:00
- id: rustc-version
2022-07-15 20:40:08 +03:00
run: |
2022-07-15 21:10:03 +03:00
: create cachekey
DATE=$(rustc +${{inputs.toolchain}} --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 +${{inputs.toolchain}} --version --verbose | sed -ne 's/^commit-hash: //p')
2022-07-15 20:40:08 +03:00
echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)"
shell: bash
2022-07-20 23:23:41 +03:00
2022-07-20 23:25:21 +03:00
- run: |
: disable incremental compilation
echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV
shell: bash
- run: rustc +${{inputs.toolchain}} --version --verbose
2021-10-09 06:01:43 +03:00
shell: bash