Skip to content

Commit 27e3dce

Browse files
authored
Rust build without sccache (rescript-lang#6845)
1 parent 72cdb21 commit 27e3dce

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/ci.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@ jobs:
4040

4141
env:
4242
RUST_BACKTRACE: "1"
43-
SCCACHE_GHA_ENABLED: "true"
44-
RUSTC_WRAPPER: "sccache"
4543

4644
steps:
4745
- name: Checkout
@@ -52,18 +50,12 @@ jobs:
5250
uses: actions/cache@v4
5351
with:
5452
path: rewatch/target
55-
key: rewatch-build-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
53+
key: rewatch-build-v2-${{ matrix.rust-target }}-${{ hashFiles('rewatch/src/**', 'rewatch/Cargo.lock') }}
5654

5755
- name: Install musl gcc
5856
if: steps.build-cache.outputs.cache-hit != 'true' && runner.os == 'Linux'
5957
run: sudo apt-get install -y --no-install-recommends musl-tools
6058

61-
- name: Set up sccache
62-
if: steps.build-cache.outputs.cache-hit != 'true'
63-
uses: mozilla-actions/[email protected]
64-
with:
65-
version: "v0.8.0"
66-
6759
- name: Install rust toolchain
6860
if: steps.build-cache.outputs.cache-hit != 'true'
6961
uses: dtolnay/rust-toolchain@master

0 commit comments

Comments
 (0)