about summary refs log tree commit diff
path: root/src/ci/scripts
diff options
context:
space:
mode:
authorJieyou Xu <jieyouxu@outlook.com>2025-03-18 12:08:38 +0800
committerJieyou Xu <jieyouxu@outlook.com>2025-03-18 12:08:38 +0800
commit69ed0232ef33f06b6fefc14f53150a00af9200e8 (patch)
treec87367c4bb57995c3ba78b92e175a3795e76775c /src/ci/scripts
parent6d515a73e25a2097c82b5b0166169cb4c2fa2082 (diff)
parent493c38ba371929579fe136df26eccd9516347c7a (diff)
downloadrust-69ed0232ef33f06b6fefc14f53150a00af9200e8.tar.gz
rust-69ed0232ef33f06b6fefc14f53150a00af9200e8.zip
Merge from rustc
Diffstat (limited to 'src/ci/scripts')
-rwxr-xr-xsrc/ci/scripts/install-sccache.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ci/scripts/install-sccache.sh b/src/ci/scripts/install-sccache.sh
index e143152f330..b055e76a805 100755
--- a/src/ci/scripts/install-sccache.sh
+++ b/src/ci/scripts/install-sccache.sh
@@ -8,11 +8,13 @@ IFS=$'\n\t'
 source "$(cd "$(dirname "$0")" && pwd)/../shared.sh"
 
 if isMacOS; then
-    curl -fo /usr/local/bin/sccache "${MIRRORS_BASE}/2021-08-25-sccache-v0.2.15-x86_64-apple-darwin"
+    curl -fo /usr/local/bin/sccache \
+      "${MIRRORS_BASE}/2025-02-24-sccache-v0.10.0-x86_64-apple-darwin"
     chmod +x /usr/local/bin/sccache
 elif isWindows; then
     mkdir -p sccache
-    curl -fo sccache/sccache.exe "${MIRRORS_BASE}/2018-04-26-sccache-x86_64-pc-windows-msvc"
+    curl -fo sccache/sccache.exe \
+      "${MIRRORS_BASE}/2025-02-24-sccache-v0.10.0-x86_64-pc-windows-msvc.exe"
     ciCommandAddPath "$(pwd)/sccache"
 fi