Skip to content

Commit

Permalink
Print sccache statistics after binary builds. (#559)
Browse files Browse the repository at this point in the history
  • Loading branch information
obi1kenobi authored Oct 18, 2023
1 parent 6d7e09d commit ae8a4a3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,11 @@ jobs:
- name: build and cache
run: |
cd semver
sccache --zero-stats
cargo build
sccache --show-stats
mkdir ../bins
mv target/debug/cargo-semver-checks ../bins/cargo-semver-checks
Expand Down Expand Up @@ -271,7 +275,11 @@ jobs:
- name: build and cache
run: |
cd semver
sccache --zero-stats
cargo build
sccache --show-stats
mkdir ..\bins
mv target\debug\cargo-semver-checks.exe ..\bins\cargo-semver-checks.exe
Expand Down

0 comments on commit ae8a4a3

Please sign in to comment.