2022-06-24 21:40:40 +03:00
|
|
|
name: rustup toolchain install
|
2021-10-09 04:41:42 +03:00
|
|
|
author: David Tolnay
|
|
|
|
description: Install the Rust toolchain
|
2022-06-24 21:48:26 +03:00
|
|
|
branding:
|
|
|
|
icon: activity
|
|
|
|
color: purple
|
2021-10-09 04:41:42 +03:00
|
|
|
|
|
|
|
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
|
2021-10-09 06:20:26 +03:00
|
|
|
components:
|
|
|
|
description: Comma-separated list of components to be additionally installed
|
|
|
|
required: false
|
2021-10-09 04:41:42 +03:00
|
|
|
|
2021-10-09 06:06:06 +03:00
|
|
|
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}}
|
2021-10-09 06:06:06 +03:00
|
|
|
|
2021-10-09 04:41:42 +03:00
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
2022-09-25 15:29:24 +03:00
|
|
|
- id: parse
|
|
|
|
run: |
|
|
|
|
: parse toolchain version
|
2022-09-25 17:54:59 +03:00
|
|
|
if [[ $toolchain =~ ^stable' '[0-9]+' '(year|month|week|day)s?' 'ago$ ]]; then
|
2022-09-25 15:29:24 +03:00
|
|
|
if [[ ${{runner.os}} == macOS ]]; then
|
2022-10-13 19:30:53 +03:00
|
|
|
echo "toolchain=1.$((($(date -v-$(sed 's/stable \([0-9]*\) \(.\).*/\1\2/' <<< $toolchain) +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT
|
2022-09-25 15:29:24 +03:00
|
|
|
else
|
2022-10-13 19:30:53 +03:00
|
|
|
echo "toolchain=1.$((($(date --date "${toolchain#stable }" +%s)/60/60/24-16569)/7/6))" >> $GITHUB_OUTPUT
|
2022-09-25 15:29:24 +03:00
|
|
|
fi
|
|
|
|
elif [[ $toolchain =~ ^stable' 'minus' '[0-9]+' 'releases?$ ]]; then
|
2022-10-13 19:30:53 +03:00
|
|
|
echo "toolchain=1.$((($(date +%s)/60/60/24-16569)/7/6-${toolchain//[^0-9]/}))" >> $GITHUB_OUTPUT
|
2022-09-25 15:29:24 +03:00
|
|
|
else
|
2022-10-13 19:30:53 +03:00
|
|
|
echo "toolchain=$toolchain" >> $GITHUB_OUTPUT
|
2022-09-25 15:29:24 +03:00
|
|
|
fi
|
|
|
|
env:
|
|
|
|
toolchain: ${{inputs.toolchain}}
|
|
|
|
shell: bash
|
|
|
|
|
2021-10-09 07:03:25 +03:00
|
|
|
- id: flags
|
|
|
|
run: |
|
2021-10-09 07:08:40 +03:00
|
|
|
: construct rustup command line
|
2022-10-13 19:30:53 +03:00
|
|
|
echo "targets=$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)" >> $GITHUB_OUTPUT
|
|
|
|
echo "components=$(for c in ${components//,/ }; do echo -n ' --component' $c; done)" >> $GITHUB_OUTPUT
|
|
|
|
echo "downgrade=${{inputs.toolchain == 'nightly' && inputs.components && ' --allow-downgrade' || ''}}" >> $GITHUB_OUTPUT
|
2021-10-09 06:57:39 +03:00
|
|
|
env:
|
2022-07-21 00:55:40 +03:00
|
|
|
targets: ${{inputs.targets || inputs.target || ''}}
|
2021-10-09 06:57:39 +03:00
|
|
|
components: ${{inputs.components}}
|
2021-10-09 06:37:46 +03:00
|
|
|
shell: bash
|
2022-07-20 23:23:41 +03:00
|
|
|
|
2022-06-05 02:41:30 +03:00
|
|
|
- run: |
|
|
|
|
: install rustup if needed
|
2022-06-05 01:19:25 +03:00
|
|
|
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
|
2022-08-01 15:38:55 +03:00
|
|
|
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
|
2022-06-05 01:19:25 +03:00
|
|
|
fi
|
|
|
|
if: runner.os != 'Windows'
|
|
|
|
shell: bash
|
2022-07-20 23:23:41 +03:00
|
|
|
|
2022-09-25 15:29:24 +03:00
|
|
|
- name: rustup toolchain install ${{steps.parse.outputs.toolchain}}
|
|
|
|
run: rustup toolchain install ${{steps.parse.outputs.toolchain}}${{steps.flags.outputs.targets}}${{steps.flags.outputs.components}} --profile minimal${{steps.flags.outputs.downgrade}} --no-self-update
|
2021-10-09 04:41:42 +03:00
|
|
|
shell: bash
|
2022-07-20 23:23:41 +03:00
|
|
|
|
2022-09-25 15:29:24 +03:00
|
|
|
- run: rustup default ${{steps.parse.outputs.toolchain}}
|
2021-10-09 04:41:42 +03:00
|
|
|
shell: bash
|
2022-07-20 23:23:41 +03:00
|
|
|
|
2021-10-09 06:06:06 +03:00
|
|
|
- id: rustc-version
|
2022-07-15 20:40:08 +03:00
|
|
|
run: |
|
2022-07-15 21:10:03 +03:00
|
|
|
: create cachekey
|
2022-09-25 15:29:24 +03:00
|
|
|
DATE=$(rustc +${{steps.parse.outputs.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 +${{steps.parse.outputs.toolchain}} --version --verbose | sed -ne 's/^commit-hash: //p')
|
2022-10-13 19:30:53 +03:00
|
|
|
echo "cachekey=$(echo $DATE$HASH | head -c12)" >> $GITHUB_OUTPUT
|
2021-10-09 06:06:06 +03:00
|
|
|
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
|
|
|
|
|
2022-10-25 05:18:00 +03:00
|
|
|
- run: |
|
|
|
|
: enable colors in Cargo output
|
|
|
|
echo CARGO_TERM_COLOR=always >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
|
2023-01-19 23:37:00 +02:00
|
|
|
- run: |
|
2023-01-31 22:10:48 +02:00
|
|
|
: enable Cargo sparse registry # ignored by stable cargo
|
2023-01-19 23:37:00 +02:00
|
|
|
echo CARGO_UNSTABLE_SPARSE_REGISTRY=true >> $GITHUB_ENV
|
|
|
|
shell: bash
|
|
|
|
|
2022-09-25 15:29:24 +03:00
|
|
|
- run: rustc +${{steps.parse.outputs.toolchain}} --version --verbose
|
2021-10-09 06:01:43 +03:00
|
|
|
shell: bash
|