From d6d838795831e46eb5101dc4d6bba494d9f7464e Mon Sep 17 00:00:00 2001 From: GroovieGermanikus Date: Wed, 13 Sep 2023 21:16:20 +0200 Subject: [PATCH] Revert "experiment with sccache" This reverts commit 8ef51dc122bcfe44419d53997a8a54b5d7754764. --- .github/workflows/build_test.yml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml index 0b2a8ef..40c1584 100644 --- a/.github/workflows/build_test.yml +++ b/.github/workflows/build_test.yml @@ -8,10 +8,6 @@ on: branches: - main -env: - SCCACHE_GHA_ENABLED: true - RUSTC_WRAPPER: sccache - jobs: build_all: name: Rust project - latest @@ -34,18 +30,14 @@ jobs: # avoid the default "-D warnings" which thrashes cache rustflags: "" - - name: Run sccache-cache - uses: mozilla-actions/sccache-action@v0.0.3 - - # https://github.com/actions/cache/blob/main/examples.md#rust---cargo - uses: actions/cache@v3 with: path: | ~/.cargo/bin/ -# ~/.cargo/registry/index/ -# ~/.cargo/registry/cache/ -# ~/.cargo/git/db/ + ~/.cargo/registry/index/ + ~/.cargo/registry/cache/ + ~/.cargo/git/db/ target/ key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}