about summary refs log tree commit diff
path: root/src/ci/docker
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2021-08-24 17:15:14 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2021-08-25 16:26:45 -0400
commit21d8d5f88101ce15c2072e83d1ccbf7533895b11 (patch)
treeffc33e9d5ba9f7a4e02f947ac3d289790f4f32d6 /src/ci/docker
parent451abd311c90e0e94c8c364a282c472323528cf5 (diff)
downloadrust-21d8d5f88101ce15c2072e83d1ccbf7533895b11.tar.gz
rust-21d8d5f88101ce15c2072e83d1ccbf7533895b11.zip
Bump sccache used in CI to v0.2.15
This skips bumping Windows sccache because we run into compilation failures when
doing so (-m32 not supported by clang-cl?). Not clear on cause, but seems
easiest to just hold back.

This should avoid PGO-related failures encountered on Linux, and more broadly
seems like a good idea on other platforms as well (though it is likely not
necessary right this moment).
Diffstat (limited to 'src/ci/docker')
-rw-r--r--src/ci/docker/scripts/sccache.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ci/docker/scripts/sccache.sh b/src/ci/docker/scripts/sccache.sh
index 292b3c1d562..6c713e1f861 100644
--- a/src/ci/docker/scripts/sccache.sh
+++ b/src/ci/docker/scripts/sccache.sh
@@ -1,12 +1,15 @@
 #!/bin/sh
+
+# ignore-tidy-linelength
+
 set -ex
 
 case "$(uname -m)" in
     x86_64)
-        url="https://ci-mirrors.rust-lang.org/rustc/2018-04-02-sccache-x86_64-unknown-linux-musl"
+        url="https://ci-mirrors.rust-lang.org/rustc/2021-08-24-sccache-v0.2.15-x86_64-unknown-linux-musl"
         ;;
     aarch64)
-        url="https://ci-mirrors.rust-lang.org/rustc/2019-12-17-sccache-aarch64-unknown-linux-gnu"
+        url="https://ci-mirrors.rust-lang.org/rustc/2021-08-25-sccache-v0.2.15-aarch64-unknown-linux-musl"
         ;;
     *)
         echo "unsupported architecture: $(uname -m)"