about summary refs log tree commit diff
path: root/src/ci/docker/scripts
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2025-02-24 07:56:00 +0100
committerRalf Jung <post@ralfj.de>2025-02-24 07:56:00 +0100
commit18e19b9f04fed7363056fc19f5f836c05fd858de (patch)
treea5355f8c6e871a3feb9e502b1ecebe6f6f561f56 /src/ci/docker/scripts
parente4de3acb971ce3c22d2cea43a8664bc570a9b3a8 (diff)
parenta4a9fb412e1b0420b570a2d6ac2cf81142c5cc11 (diff)
downloadrust-18e19b9f04fed7363056fc19f5f836c05fd858de.tar.gz
rust-18e19b9f04fed7363056fc19f5f836c05fd858de.zip
Merge from rustc
Diffstat (limited to 'src/ci/docker/scripts')
-rwxr-xr-xsrc/ci/docker/scripts/build-clang.sh2
-rw-r--r--src/ci/docker/scripts/sccache.sh4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/ci/docker/scripts/build-clang.sh b/src/ci/docker/scripts/build-clang.sh
index 841a0adb2ab..536991cc06b 100755
--- a/src/ci/docker/scripts/build-clang.sh
+++ b/src/ci/docker/scripts/build-clang.sh
@@ -5,7 +5,7 @@ set -ex
 source shared.sh
 
 # Try to keep the LLVM version here in sync with src/ci/scripts/install-clang.sh
-LLVM=llvmorg-19.1.0-rc3
+LLVM=llvmorg-20.1.0-rc2
 
 mkdir llvm-project
 cd llvm-project
diff --git a/src/ci/docker/scripts/sccache.sh b/src/ci/docker/scripts/sccache.sh
index 6c713e1f861..f66671c64d2 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/2021-08-24-sccache-v0.2.15-x86_64-unknown-linux-musl"
+        url="https://ci-mirrors.rust-lang.org/rustc/2025-01-07-sccache-v0.9.1-x86_64-unknown-linux-musl"
         ;;
     aarch64)
-        url="https://ci-mirrors.rust-lang.org/rustc/2021-08-25-sccache-v0.2.15-aarch64-unknown-linux-musl"
+        url="https://ci-mirrors.rust-lang.org/rustc/2025-01-07-sccache-v0.9.1-aarch64-unknown-linux-musl"
         ;;
     *)
         echo "unsupported architecture: $(uname -m)"