2021-10-09 05:15:41 +01:00
# Install Rust Toolchain
This GitHub Action installs a Rust toolchain using rustup. It is designed for
2022-08-15 16:44:30 -07:00
one-line concise usage and good defaults.
2021-10-09 05:15:41 +01:00
2022-09-25 05:29:24 -07:00
< br >
2021-10-09 05:15:41 +01:00
## Example workflow
```yaml
name: test suite
on: [push, pull_request]
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
2023-09-18 02:00:52 +08:00
- uses: actions/checkout@v4
2021-10-09 05:15:41 +01:00
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
```
The selection of Rust toolchain is made based on the particular @rev of this
Action being requested. For example "dtolnay/rust-toolchain@nightly " pulls in
the nightly Rust toolchain, while "dtolnay/rust-toolchain@1 .42.0" pulls in
1.42.0.
2022-09-25 05:29:24 -07:00
< br >
2021-10-09 05:15:41 +01:00
## Inputs
All inputs are optional.
2022-07-14 11:20:49 -07:00
< table >
< tr >
< th > Name< / th >
< th > Description< / th >
< / tr >
< tr >
< td > < code > toolchain< / code > < / td >
2022-07-14 11:23:14 -07:00
< td >
2022-07-14 11:24:05 -07:00
Rustup toolchain specifier e.g. < code > stable< / code > , < code > nightly< / code > , < code > 1.42.0< / code > , < code > nightly-2022-01-01< / code > .
2022-07-14 11:23:14 -07:00
< b > Important: the default is to match the @rev as described above.</ b >
2022-07-14 11:28:31 -07:00
When passing an explicit < code > toolchain</ code > as an input instead of @rev , you'll want to use "dtolnay/rust-toolchain@master " as the revision of the action.
2022-07-14 11:23:14 -07:00
< / td >
2022-07-14 11:20:49 -07:00
< / tr >
< tr >
2022-07-19 12:21:41 -04:00
< td > < code > targets< / code > < / td >
< td > Comma-separated string of additional targets to install e.g. < code > wasm32-unknown-unknown< / code > < / td >
2022-07-14 11:20:49 -07:00
< / tr >
< tr >
< td > < code > components< / code > < / td >
< td > Comma-separated string of additional components to install e.g. < code > clippy, rustfmt< / code > < / td >
< / tr >
< / table >
2021-10-09 05:15:41 +01:00
2022-09-25 05:29:24 -07:00
< br >
2023-02-01 15:04:54 -08:00
## Outputs
< table >
< tr >
< th > Name< / th >
< th > Description< / th >
< / tr >
< tr >
< td > < code > cachekey< / code > < / td >
< td > A short hash of the installed rustc version, appropriate for use as a cache key. < code > "20220627a831"< / code > < / td >
< / tr >
< tr >
< td > < code > name< / code > < / td >
< td > Rustup's name for the selected version of the toolchain, like < code > "1.62.0"< / code > . Suitable for use with < code > cargo +${{steps.toolchain.outputs.name}}< / code > .< / td >
< / tr >
< / table >
< br >
2022-09-25 05:29:24 -07:00
## Toolchain expressions
The following forms are available for projects that use a sliding window of
compiler support.
```yaml
# Installs the most recent stable toolchain as of the specified time
# offset, which may be written in years, months, weeks, or days.
- uses: dtolnay/rust-toolchain@master
with:
2022-09-25 07:54:59 -07:00
toolchain: stable 18 months ago
2022-09-25 05:29:24 -07:00
```
```yaml
# Installs the stable toolchain which preceded the most recent one by
# the specified number of minor versions.
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable minus 8 releases
```
< br >
2021-10-09 05:15:41 +01:00
## License
The scripts and documentation in this project are released under the [MIT
License].
[MIT License]: LICENSE