mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-10 19:46:33 +02:00
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
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
|
|
target:
|
|
description: Target triple to install for this toolchain
|
|
required: false
|
|
components:
|
|
description: Comma-separated list of components to be additionally installed
|
|
required: false
|
|
|
|
outputs:
|
|
version:
|
|
description: Version as reported by `rustc --version`
|
|
value: ${{steps.rustc-version.outputs.version}}
|
|
|
|
runs:
|
|
using: composite
|
|
steps:
|
|
- id: flags
|
|
run: |
|
|
: construct rustup command line
|
|
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)"
|
|
env:
|
|
components: ${{inputs.components}}
|
|
shell: bash
|
|
- name: rustup toolchain install ${{inputs.toolchain}}
|
|
run: rustup toolchain install ${{inputs.toolchain}}${{steps.flags.outputs.target}}${{steps.flags.outputs.components}} --profile minimal --no-self-update
|
|
shell: bash
|
|
- run: rustup default ${{inputs.toolchain}}
|
|
shell: bash
|
|
- id: rustc-version
|
|
run: echo "::set-output name=version::$(rustc --version)"
|
|
shell: bash
|
|
- run: rustc --version
|
|
shell: bash
|