summary refs log tree commit diff
path: root/src/ci/docker/scripts
diff options
context:
space:
mode:
authorJakub Beránek <berykubik@gmail.com>2025-02-26 11:12:23 +0100
committerJakub Beránek <berykubik@gmail.com>2025-03-12 16:11:24 +0100
commit36719a90f7d8b1e43f4a7ac1ba20786f837df555 (patch)
tree8b433e8b6adfb271951a312902fa08e1140e171b /src/ci/docker/scripts
parent0998d4095b0f11061f78a3f9c77a87838a4c1cb7 (diff)
downloadrust-36719a90f7d8b1e43f4a7ac1ba20786f837df555.tar.gz
rust-36719a90f7d8b1e43f4a7ac1ba20786f837df555.zip
Update sccache to 0.10.0
This time, does it also for Windows and macOS.
Diffstat (limited to 'src/ci/docker/scripts')
-rw-r--r--src/ci/docker/scripts/sccache.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/docker/scripts/sccache.sh b/src/ci/docker/scripts/sccache.sh
index f66671c64d2..dba617d8bc8 100644
--- a/src/ci/docker/scripts/sccache.sh
+++ b/src/ci/docker/scripts/sccache.sh
@@ -6,10 +6,10 @@ set -ex
 
 case "$(uname -m)" in
     x86_64)
-        url="https://ci-mirrors.rust-lang.org/rustc/2025-01-07-sccache-v0.9.1-x86_64-unknown-linux-musl"
+        url="https://ci-mirrors.rust-lang.org/rustc/2025-02-24-sccache-v0.10.0-x86_64-unknown-linux-musl"
         ;;
     aarch64)
-        url="https://ci-mirrors.rust-lang.org/rustc/2025-01-07-sccache-v0.9.1-aarch64-unknown-linux-musl"
+        url="https://ci-mirrors.rust-lang.org/rustc/2025-02-24-sccache-v0.10.0-aarch64-unknown-linux-musl"
         ;;
     *)
         echo "unsupported architecture: $(uname -m)"