Skip to content

Commit dc24680

Browse files
committed
clean
1 parent babb5be commit dc24680

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install Rust Toolchain
3737
uses: dtolnay/rust-toolchain@nightly
3838

39-
- name: Install sccache
39+
- name: Set up
4040
run: |
4141
echo "Runner OS is ${{ runner.os }}"
4242
# cargo install sccache
@@ -46,15 +46,15 @@ jobs:
4646
with:
4747
path: |
4848
target
49-
~/.cache/sccache
49+
# ~/.cache/sccache
5050
key: ${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
5151
restore-keys: |
5252
${{ runner.os }}-cargo-${{ hashFiles('Cargo.lock') }}
5353
${{ runner.os }}-cargo-
5454
5555
- name: Build Release
56-
env:
57-
RUSTC_WRAPPER: sccache # Setting sccache as Rust compiler wrapper
56+
# env:
57+
# RUSTC_WRAPPER: sccache # Setting sccache as Rust compiler wrapper
5858
run: cargo build --release
5959

6060
- name: Archive Release Binary (Windows)

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ opt-level = 1
1616

1717
[build]
1818
rustflags = ["-Z", "threads=4"]
19-
rustc-wrapper = "sccache" # Use sccache for caching compilation
19+
# rustc-wrapper = "sccache" # Use sccache for caching compilation

0 commit comments

Comments
 (0)