Skip to content

Commit 2daf68e

Browse files
committed
Rust build without sccache
1 parent 743b236 commit 2daf68e

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,6 @@ jobs:
4747

4848
env:
4949
RUST_BACKTRACE: "1"
50-
SCCACHE_GHA_ENABLED: "true"
51-
RUSTC_WRAPPER: "sccache"
5250

5351
steps:
5452
- name: Checkout
@@ -59,18 +57,12 @@ jobs:
5957
uses: actions/cache@v4
6058
with:
6159
path: rewatch/target
62-
key: rewatch-build-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
60+
key: rewatch-build-v2-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
6361

6462
- name: Install musl gcc
6563
if: steps.build-cache.outputs.cache-hit != 'true' && runner.os == 'Linux'
6664
run: sudo apt-get install -y --no-install-recommends musl-tools
6765

68-
- name: Set up sccache
69-
if: steps.build-cache.outputs.cache-hit != 'true'
70-
uses: mozilla-actions/sccache-action@v0.0.4
71-
with:
72-
version: "v0.8.0"
73-
7466
- name: Install rust toolchain
7567
if: steps.build-cache.outputs.cache-hit != 'true'
7668
uses: dtolnay/rust-toolchain@master

0 commit comments

Comments
 (0)