-
Notifications
You must be signed in to change notification settings - Fork 368
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
title: Rust Install | ||
summary: | | ||
Install the Rust Toolchain. | ||
description: | | ||
Install the required components to build and run Rust projects in the current workflow. | ||
website: https://github.com/nick0602/bitrise-step-rustup/ | ||
source_code_url: https://github.com/nick0602/bitrise-step-rustup/ | ||
support_url: https://github.com/nick0602/bitrise-step-rustup/issues | ||
published_at: 2022-09-26T07:34:06.74688916+02:00 | ||
source: | ||
git: https://github.com/nick0602/bitrise-step-rustup.git | ||
commit: 62335ebdf8926f2201cfa9dc55ba80b418e6e1b1 | ||
type_tags: | ||
- installer | ||
toolkit: | ||
bash: | ||
entry_file: step.sh | ||
inputs: | ||
- opts: | ||
description: | | ||
Specify a Rust version. If blank, defaults to the current `stable` version. | ||
is_expand: true | ||
summary: Installs and uses the specified Rust version. | ||
title: Rust version | ||
rust_version: stable | ||
- auto_update_toolchain: "false" | ||
opts: | ||
description: | | ||
If `true`, forces the update of the Rust Toolchain. Valid for `stable` and `nightly` versions only. | ||
is_expand: true | ||
summary: Automatically update the Rust Toolchain on every run. | ||
title: Update the Rust Toolchain | ||
value_options: | ||
- "true" | ||
- "false" | ||
- cache_level: none | ||
opts: | ||
description: | | ||
`all` will cache cargo binaries and rustup root folder, `none` won't cache any of the above. | ||
is_expand: true | ||
summary: Sets the local folders to be cached. | ||
title: Set cache level | ||
value_options: | ||
- all | ||
- none | ||
- opts: | ||
description: | | ||
If `true`, prints the exported `$RUSTUP_VERSION`, `$RUSTC_VERSION` and `$CARGO_VERSION` at the end of the step. | ||
is_expand: true | ||
summary: Shows the version of the Toolchain components at the end of the step. | ||
title: Show Toolchain versions | ||
value_options: | ||
- "true" | ||
- "false" | ||
show_exported_envs: "false" | ||
outputs: | ||
- RUSTUP_VERSION: null | ||
opts: | ||
description: | | ||
The version returned by the `rustup -V` command. | ||
summary: The current Rust Toolchain version | ||
title: Current `rustup` version | ||
- RUSTC_VERSION: null | ||
opts: | ||
description: | | ||
The version returned by the `rustc -V` command. | ||
summary: The current Rustc version | ||
title: Current `rustc` version | ||
- CARGO_VERSION: null | ||
opts: | ||
description: | | ||
The version returned by the `cargo -V` command. | ||
summary: The current Cargo version | ||
title: Current `cargo` version |