2022-07-23 11:05:31 +00:00
|
|
|
name: cached-rust
|
|
|
|
description: Installs Rust, caching ~/.cargo and ./target
|
|
|
|
|
|
|
|
inputs:
|
|
|
|
toolchain:
|
|
|
|
description: "Toolchain to install"
|
|
|
|
required: false
|
|
|
|
default: stable
|
|
|
|
|
|
|
|
components:
|
|
|
|
description: "Components to install"
|
|
|
|
required: false
|
|
|
|
default:
|
|
|
|
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
2022-07-29 14:36:09 +00:00
|
|
|
- name: Rust Cache
|
2022-07-23 11:05:31 +00:00
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: |
|
2022-07-23 11:10:25 +00:00
|
|
|
~/.cargo/registry
|
|
|
|
~/.cargo/git
|
2022-07-23 11:05:31 +00:00
|
|
|
./target
|
|
|
|
key: ${{ runner.os }}-${{ runner.arch }}-rust-${{ inputs.toolchain }}
|
|
|
|
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: ${{ inputs.toolchain }}
|
|
|
|
profile: minimal
|
|
|
|
default: true
|
|
|
|
components: ${{ inputs.components }}
|