Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
bc88fd0b3e | |||
685abf8306 | |||
b71469df8b | |||
6ccb5b2412 | |||
eeb9aed65a | |||
7d2efc1a78 | |||
aea84e9171 | |||
08010b773d | |||
dcf4d74c21 | |||
7d6ff77cf9 | |||
3ec6dbd408 |
2
.github/workflows/autotag-releases.yml
vendored
2
.github/workflows/autotag-releases.yml
vendored
@ -19,7 +19,7 @@ jobs:
|
|||||||
- name: Get version from tag
|
- name: Get version from tag
|
||||||
id: tag_name
|
id: tag_name
|
||||||
run: |
|
run: |
|
||||||
echo ::set-output name=current_version::${GITHUB_REF#refs/tags/}
|
echo "current_version=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: Create and push tags
|
- name: Create and push tags
|
||||||
run: |
|
run: |
|
||||||
|
42
CHANGELOG.md
42
CHANGELOG.md
@ -7,6 +7,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.3.5] - 2023-01-21
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Use the newly stabilized setting to enable sparse registry access.
|
||||||
|
This speeds up access to the crate registry and is in addition to the unstable nightly env var.
|
||||||
|
<https://github.com/rust-lang/cargo/pull/11224>
|
||||||
|
|
||||||
|
## [1.3.4] - 2022-10-15
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* The last version did not fix all "set-output" commands
|
||||||
|
|
||||||
|
## [1.3.3] - 2022-10-13
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Switch from set-output to $GITHUB_OUTPUT to avoid warning
|
||||||
|
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
||||||
|
|
||||||
|
## [1.3.2] - 2022-09-15
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
* Fix setting `$CARGO_HOME` to a valid path, in case rustup is installed from the internet.
|
||||||
|
Thanks to @nahsi for providing the fix.
|
||||||
|
|
||||||
|
## [1.3.1] - 2022-08-14
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
* Use the sparse-registry on nightly for faster access to the crate registry on nightly.
|
||||||
|
<https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862>
|
||||||
|
|
||||||
|
## [1.3.0] - 2022-07-30
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
* An option to disable configuring Rust cache.
|
||||||
|
Thanks to @filips123 for the PR.
|
||||||
|
|
||||||
## [1.2.1] - 2022-07-29
|
## [1.2.1] - 2022-07-29
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
@ -50,6 +50,7 @@ All input values are ignored if a toolchain file exists.
|
|||||||
| `toolchain` | Rustup toolchain specifier e.g. `stable`, `nightly`, `1.42.0`. | stable |
|
| `toolchain` | Rustup toolchain specifier e.g. `stable`, `nightly`, `1.42.0`. | stable |
|
||||||
| `target` | Additional target support to install e.g. `wasm32-unknown-unknown` | |
|
| `target` | Additional target support to install e.g. `wasm32-unknown-unknown` | |
|
||||||
| `components` | Comma-separated string of additional components to install e.g. `clippy, rustfmt` | |
|
| `components` | Comma-separated string of additional components to install e.g. `clippy, rustfmt` | |
|
||||||
|
| `cache` | Automatically configure Rust cache (using `Swatinem/rust-cache`) | true |
|
||||||
|
|
||||||
## Outputs
|
## Outputs
|
||||||
|
|
||||||
|
27
action.yml
27
action.yml
@ -22,6 +22,10 @@ inputs:
|
|||||||
components:
|
components:
|
||||||
description: "Comma-separated list of components to be additionally installed"
|
description: "Comma-separated list of components to be additionally installed"
|
||||||
required: false
|
required: false
|
||||||
|
cache:
|
||||||
|
description: "Automatically configure Rust cache"
|
||||||
|
required: false
|
||||||
|
default: "true"
|
||||||
|
|
||||||
outputs:
|
outputs:
|
||||||
rustc-version:
|
rustc-version:
|
||||||
@ -43,9 +47,9 @@ runs:
|
|||||||
- id: flags
|
- id: flags
|
||||||
run: |
|
run: |
|
||||||
: construct rustup command line
|
: construct rustup command line
|
||||||
echo "::set-output name=targets::$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)"
|
echo "targets=$(for t in ${targets//,/ }; do echo -n ' --target' $t; done)" >> $GITHUB_OUTPUT
|
||||||
echo "::set-output name=components::$(for c in ${components//,/ }; do echo -n ' --component' $c; done)"
|
echo "components=$(for c in ${components//,/ }; do echo -n ' --component' $c; done)" >> $GITHUB_OUTPUT
|
||||||
echo "::set-output name=downgrade::${{inputs.toolchain == 'nightly' && inputs.components && ' --allow-downgrade' || ''}}"
|
echo "downgrade=${{inputs.toolchain == 'nightly' && inputs.components && ' --allow-downgrade' || ''}}" >> $GITHUB_OUTPUT
|
||||||
env:
|
env:
|
||||||
targets: ${{inputs.target}}
|
targets: ${{inputs.target}}
|
||||||
components: ${{inputs.components}}
|
components: ${{inputs.components}}
|
||||||
@ -58,6 +62,12 @@ runs:
|
|||||||
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
|
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
|
||||||
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
|
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
|
||||||
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
|
||||||
|
# Enable faster sparse index on nightly
|
||||||
|
# https://internals.rust-lang.org/t/call-for-testing-cargo-sparse-registry/16862
|
||||||
|
echo "CARGO_UNSTABLE_SPARSE_REGISTRY=true" >> $GITHUB_ENV
|
||||||
|
# Enable sparse index after stabilization
|
||||||
|
# https://github.com/rust-lang/cargo/pull/11224
|
||||||
|
echo "REGISTRIES_CRATES_IO_PROTOCOL=sparse" >> $GITHUB_ENV
|
||||||
shell: bash
|
shell: bash
|
||||||
- name: "Install Rust Problem Matcher"
|
- name: "Install Rust Problem Matcher"
|
||||||
run: echo "::add-matcher::${{ github.action_path }}/rust.json"
|
run: echo "::add-matcher::${{ github.action_path }}/rust.json"
|
||||||
@ -67,7 +77,7 @@ runs:
|
|||||||
run: |
|
run: |
|
||||||
if ! command -v rustup &> /dev/null ; then
|
if ! command -v rustup &> /dev/null ; then
|
||||||
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
|
curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y
|
||||||
echo "${CARGO_HOME:-~/.cargo}/bin" >> $GITHUB_PATH
|
echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
|
||||||
fi
|
fi
|
||||||
if: runner.os != 'Windows'
|
if: runner.os != 'Windows'
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -87,17 +97,18 @@ runs:
|
|||||||
- name: Print installed versions
|
- name: Print installed versions
|
||||||
id: versions
|
id: versions
|
||||||
run: |
|
run: |
|
||||||
echo "::set-output name=rustc-version::$(rustc --version)"
|
echo "rustc-version=$(rustc --version)" >> $GITHUB_OUTPUT
|
||||||
rustc --version --verbose
|
rustc --version --verbose
|
||||||
echo "::set-output name=cargo-version::$(cargo --version)"
|
echo "cargo-version=$(cargo --version)" >> $GITHUB_OUTPUT
|
||||||
cargo --version --verbose
|
cargo --version --verbose
|
||||||
echo "::set-output name=rustup-version::$(rustup --version)"
|
echo "rustup-version=$(rustup --version)" >> $GITHUB_OUTPUT
|
||||||
rustup --version
|
rustup --version
|
||||||
|
|
||||||
DATE=$(rustc --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p')
|
DATE=$(rustc --version --verbose | sed -ne 's/^commit-date: \(20[0-9][0-9]\)-\([01][0-9]\)-\([0-3][0-9]\)$/\1\2\3/p')
|
||||||
HASH=$(rustc --version --verbose | sed -ne 's/^commit-hash: //p')
|
HASH=$(rustc --version --verbose | sed -ne 's/^commit-hash: //p')
|
||||||
echo "::set-output name=cachekey::$(echo $DATE$HASH | head -c12)"
|
echo "cachekey=$(echo $DATE$HASH | head -c12)" >> $GITHUB_OUTPUT
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
- name: "Setup Rust Caching"
|
- name: "Setup Rust Caching"
|
||||||
|
if: inputs.cache == 'true'
|
||||||
uses: Swatinem/rust-cache@v2
|
uses: Swatinem/rust-cache@v2
|
||||||
|
Reference in New Issue
Block a user