about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2025-03-15 20:13:16 +0000
committerbors <bors@rust-lang.org>2025-03-15 20:13:16 +0000
commit9f274ba3997030a2b7656755a6810fd26cb709f3 (patch)
tree9267d5e3c231b8bce1fa0a1667311fc250f13c73 /src/ci/docker
parent4d30011f6c616be074ba655a75e5d55441232bbb (diff)
parent7d141dc12e9500847cd45350ad4f2ff698624704 (diff)
downloadrust-9f274ba3997030a2b7656755a6810fd26cb709f3.tar.gz
rust-9f274ba3997030a2b7656755a6810fd26cb709f3.zip
Auto merge of #137665 - Kobzol:update-sccache, r=marcoieni
Update sccache to 0.10.0

This time, does it also for Windows and macOS. This unifies the sccache version across all OSes that we use.

r? `@ghost`

try-job: dist-aarch64-apple
try-job: dist-x86_64-apple
try-job: dist-x86_64-msvc
try-job: dist-x86_64-msvc-alt
try-job: dist-i686-msvc
try-job: dist-aarch64-msvc
try-job: dist-x86_64-linux
try-job: dist-x86_64-netbsd
Diffstat (limited to 'src/ci/docker')
-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)"