sscache + Swatinem

This commit is contained in:
GroovieGermanikus 2023-09-13 23:09:08 +02:00
parent a42194584f
commit ebb701e0cc
1 changed files with 9 additions and 8 deletions

View File

@ -12,6 +12,7 @@ on:
env: env:
SCCACHE_GHA_ENABLED: true SCCACHE_GHA_ENABLED: true
RUSTC_WRAPPER: sccache RUSTC_WRAPPER: sccache
SCCACHE_CACHE_SIZE: "1G"
jobs: jobs:
build_all: build_all:
@ -31,30 +32,30 @@ jobs:
with: with:
# use toolchain version from rust-toolchain.toml # use toolchain version from rust-toolchain.toml
components: rustfmt, clippy components: rustfmt, clippy
cache: false cache: true
# avoid the default "-D warnings" which thrashes cache # avoid the default "-D warnings" which thrashes cache
rustflags: "" rustflags: ""
- name: Run sccache-cache - name: Run sccache-cache
uses: mozilla-actions/sccache-action@v0.0.3 uses: mozilla-actions/sccache-action@v0.0.3
# https://github.com/actions/cache/blob/main/examples.md#rust---cargo # https://github.com/actions/cache/blob/main/examples.md#rust---cargo
- uses: actions/cache@v3 # https://blog.arriven.wtf/posts/rust-ci-cache/
- uses: Swatinem/rust-cache@v2
with: with:
path: | # will be covered by sscache
~/.cargo/bin/ cache-targets: false
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Early Build - name: Early Build
run: | run: |
rustc --version
echo $RUSTFLAGS
cargo build --workspace --tests cargo build --workspace --tests
- name: Run fmt+clippy - name: Run fmt+clippy
run: | run: |
cargo fmt --all --check cargo fmt --all --check
cargo clippy --workspace --all-targets cargo clippy --locked --workspace --all-targets