mirror of
https://github.com/dtolnay/rust-toolchain.git
synced 2024-11-13 04:56:33 +02:00
Support specifying target triple
This commit is contained in:
parent
1b2f63dd38
commit
d115c8759a
1 changed files with 4 additions and 1 deletions
|
@ -6,6 +6,9 @@ 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
|
||||
|
||||
outputs:
|
||||
version:
|
||||
|
@ -16,7 +19,7 @@ runs:
|
|||
using: composite
|
||||
steps:
|
||||
- name: rustup toolchain install ${{inputs.toolchain}}
|
||||
run: rustup toolchain install ${{inputs.toolchain}} --profile minimal --no-self-update
|
||||
run: rustup toolchain install ${{inputs.toolchain}}${{inputs.target && format(' --target {0}', inputs.target)}} --profile minimal --no-self-update
|
||||
shell: bash
|
||||
- run: rustup default ${{inputs.toolchain}}
|
||||
shell: bash
|
||||
|
|
Loading…
Reference in a new issue