From 1aff865be65cff27bac59f92f64a848b6d0afd0e Mon Sep 17 00:00:00 2001 From: Christoph Knittel Date: Tue, 2 Jul 2024 18:26:46 +0200 Subject: [PATCH] Rust build without sccache --- .github/workflows/ci.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6f7157491..d01bd49b8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,8 +40,6 @@ jobs: env: RUST_BACKTRACE: "1" - SCCACHE_GHA_ENABLED: "true" - RUSTC_WRAPPER: "sccache" steps: - name: Checkout @@ -52,18 +50,12 @@ jobs: uses: actions/cache@v4 with: path: rewatch/target - key: rewatch-build-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }} + key: rewatch-build-v2-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }} - name: Install musl gcc if: steps.build-cache.outputs.cache-hit != 'true' && runner.os == 'Linux' run: sudo apt-get install -y --no-install-recommends musl-tools - - name: Set up sccache - if: steps.build-cache.outputs.cache-hit != 'true' - uses: mozilla-actions/sccache-action@v0.0.4 - with: - version: "v0.8.0" - - name: Install rust toolchain if: steps.build-cache.outputs.cache-hit != 'true' uses: dtolnay/rust-toolchain@master