rust-toolchain/action.yml

34 lines
1.1 KiB
YAML
Raw Normal View History

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
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:
- name: rustup toolchain install ${{inputs.toolchain}}
run: rustup toolchain install ${{inputs.toolchain}}${{inputs.target && format(' --target {0}', inputs.target)}}${{inputs.components && format(' --component {0}', inputs.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
2021-10-09 06:01:43 +03:00
- run: rustc --version
shell: bash