Skip to content

Commit

Permalink
rustup-install 0.2.0 (#3624)
Browse files Browse the repository at this point in the history
  • Loading branch information
nick0602 authored Oct 3, 2022
1 parent 1e2e36b commit 951fae4
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions steps/rustup-install/0.2.0/step.yml
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

0 comments on commit 951fae4

Please sign in to comment.