diff options
| author | bors <bors@rust-lang.org> | 2025-02-20 05:59:04 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2025-02-20 05:59:04 +0000 |
| commit | eeb9035117dc85fa4abe8e2abb09285fd65b0263 (patch) | |
| tree | 764837db4595c0064f928a3cbb212a27681cb602 /src/ci/docker/scripts | |
| parent | 6d3c050de81c8858e28b0e59cc9398d840edfbff (diff) | |
| parent | 0d0a2a3bea3ad69b4acaa421932cc0d2aee53a58 (diff) | |
| download | rust-eeb9035117dc85fa4abe8e2abb09285fd65b0263.tar.gz rust-eeb9035117dc85fa4abe8e2abb09285fd65b0263.zip | |
Auto merge of #137023 - Kobzol:bump-sccache, r=marcoieni
Bump sccache in CI to 0.9.1 We haven't updated the used sccache version for years, it has accrued a bunch of fixes and features in the meantime. It now supports the `--show-adv-stats` flag, which gives a more detailed summary of the results of caching. And it can also cache Rust code, which could be useful in the future (https://github.com/rust-lang/rust/pull/136942 - although now there are no large wins). It also supports caching PGO now, but since the PGO profiles are always different, it won't make any real difference. https://github.com/rust-lang/rust/pull/133076 previously tried to update the version to 0.3 (CC `@klensy)` r? `@marcoieni`
Diffstat (limited to 'src/ci/docker/scripts')
| -rw-r--r-- | src/ci/docker/scripts/sccache.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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)" |
