Skip to content

Commit d1ba8e3

Browse files
committed
Use new sccache stats for showing advanced stats
1 parent 3e4dbff commit d1ba8e3

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

src/ci/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,5 +279,5 @@ if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
279279
fi
280280

281281
echo "::group::sccache stats"
282-
sccache --show-stats || true
282+
sccache --show-adv-stats || true
283283
echo "::endgroup::"

src/ci/scripts/install-sccache.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ IFS=$'\n\t'
88
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
99

1010
if isMacOS; then
11-
curl -fo /usr/local/bin/sccache "${MIRRORS_BASE}/2025-02-24-sccache-v0.10.0-x86_64-apple-darwin"
11+
curl -fo /usr/local/bin/sccache \
12+
"${MIRRORS_BASE}/2025-02-24-sccache-v0.10.0-x86_64-apple-darwin"
1213
chmod +x /usr/local/bin/sccache
1314
elif isWindows; then
1415
mkdir -p sccache
15-
curl -fo sccache/sccache.exe "${MIRRORS_BASE}/2025-02-24-sccache-v0.10.0-x86_64-pc-windows-msvc.exe"
16+
curl -fo sccache/sccache.exe \
17+
"${MIRRORS_BASE}/2025-02-24-sccache-v0.10.0-x86_64-pc-windows-msvc.exe"
1618
ciCommandAddPath "$(pwd)/sccache"
1719
fi
1820

0 commit comments

Comments
 (0)