Skip to content

Commit d7db01d

Browse files
committed
[skip ci] bump sccache for win
1 parent 2d79d41 commit d7db01d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/ci/run.sh

+1
Original file line numberDiff line numberDiff line change
@@ -279,5 +279,6 @@ if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
279279
fi
280280

281281
echo "::group::sccache stats"
282+
sccache --version || true
282283
sccache --show-stats || true
283284
echo "::endgroup::"

src/ci/scripts/install-sccache.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ if isMacOS; then
1212
chmod +x /usr/local/bin/sccache
1313
elif isWindows; then
1414
mkdir -p sccache
15-
curl -fo sccache/sccache.exe "${MIRRORS_BASE}/2018-04-26-sccache-x86_64-pc-windows-msvc"
15+
curl -fLo sccache.tar.gz "https://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-pc-windows-msvc.tar.gz"
16+
tar zxvf sccache.tar.gz --wildcards --no-anchored 'sccache.exe' --strip-components=1
17+
mv sccache.exe sccache
1618
ciCommandAddPath "$(pwd)/sccache"
1719
fi
1820

0 commit comments

Comments
 (0)