2021-10-09 04:41:42 +03:00
|
|
|
name: rustup
|
|
|
|
author: David Tolnay
|
|
|
|
description: Install the Rust toolchain
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
toolchain:
|
|
|
|
description: Rust toolchain specification -- see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification
|
|
|
|
required: true
|
2021-10-09 06:11:52 +03:00
|
|
|
target:
|
|
|
|
description: Target triple to install for this toolchain
|
|
|
|
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:
|
|
|
|
version:
|
|
|
|
description: Version as reported by `rustc --version`
|
|
|
|
value: ${{steps.rustc-version.outputs.version}}
|
|
|
|
|
2021-10-09 04:41:42 +03:00
|
|
|
runs:
|
|
|
|
using: composite
|
|
|
|
steps:
|
2021-10-09 07:03:25 +03:00
|
|
|
- id: flags
|
2021-10-09 07:07:58 +03:00
|
|
|
name: construct rustup command line
|
2021-10-09 07:03:25 +03:00
|
|
|
run: |
|
|
|
|
echo "::set-output name=target::${{inputs.target && ' --target '}}${{inputs.target}}"
|
|
|
|
echo "::set-output name=components::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)"
|
2021-10-09 06:57:39 +03:00
|
|
|
env:
|
|
|
|
components: ${{inputs.components}}
|
2021-10-09 06:37:46 +03:00
|
|
|
shell: bash
|
2021-10-09 04:41:42 +03:00
|
|
|
- name: rustup toolchain install ${{inputs.toolchain}}
|
2021-10-09 07:03:25 +03:00
|
|
|
run: rustup toolchain install ${{inputs.toolchain}}${{steps.flags.outputs.target}}${{steps.flags.outputs.components}} --profile minimal --no-self-update
|
2021-10-09 04:41:42 +03:00
|
|
|
shell: bash
|
|
|
|
- run: rustup default ${{inputs.toolchain}}
|
|
|
|
shell: bash
|
2021-10-09 06:06:06 +03:00
|
|
|
- id: rustc-version
|
|
|
|
run: echo "::set-output name=version::$(rustc --version)"
|
|
|
|
shell: bash
|
2021-10-09 06:01:43 +03:00
|
|
|
- run: rustc --version
|
|
|
|
shell: bash
|