Skip to content

Commit

Permalink
Set environment variables before running rust-cache
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasbb committed Jul 29, 2022
1 parent 8282e10 commit 137d2d5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 11 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.1] - 2022-07-29

### Fixed

* Set environment variables before invoking the cache action.
This ensures restoring and saving are using the same cache key.

## [1.2.0] - 2022-07-21

### Added
Expand Down
24 changes: 13 additions & 11 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,19 @@ runs:
targets: ${{inputs.target}}
components: ${{inputs.components}}
shell: bash
# The environment variables always need to be set before the caching action
- name: "Setting Environment Variables"
run: |
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV
echo "CARGO_PROFILE_DEV_DEBUG=0" >> $GITHUB_ENV
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
shell: bash
- name: "Install Rust Problem Matcher"
run: echo "::add-matcher::${{ github.action_path }}/rust.json"
shell: bash

- name: Install rustup, if needed
run: |
if ! command -v rustup &> /dev/null ; then
Expand Down Expand Up @@ -88,14 +101,3 @@ runs:

- name: "Setup Rust Caching"
uses: Swatinem/rust-cache@v2
- name: "Install Rust Problem Matcher"
run: echo "::add-matcher::${{ github.action_path }}/rust.json"
shell: bash
- name: "Setting Environment Variables"
run: |
echo "CARGO_INCREMENTAL=0" >> $GITHUB_ENV
echo "CARGO_PROFILE_DEV_DEBUG=0" >> $GITHUB_ENV
echo "CARGO_TERM_COLOR=always" >> $GITHUB_ENV
echo "RUST_BACKTRACE=short" >> $GITHUB_ENV
echo "RUSTFLAGS=-D warnings" >> $GITHUB_ENV
shell: bash

0 comments on commit 137d2d5

Please sign in to comment.