diff options
| author | Mark Rousskov <mark.simulacrum@gmail.com> | 2021-08-24 17:15:14 -0400 |
|---|---|---|
| committer | Mark Rousskov <mark.simulacrum@gmail.com> | 2021-08-25 16:26:45 -0400 |
| commit | 21d8d5f88101ce15c2072e83d1ccbf7533895b11 (patch) | |
| tree | ffc33e9d5ba9f7a4e02f947ac3d289790f4f32d6 /src/ci/scripts | |
| parent | 451abd311c90e0e94c8c364a282c472323528cf5 (diff) | |
| download | rust-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/scripts')
| -rwxr-xr-x | src/ci/scripts/install-sccache.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/scripts/install-sccache.sh b/src/ci/scripts/install-sccache.sh index d3c29899225..e143152f330 100755 --- a/src/ci/scripts/install-sccache.sh +++ b/src/ci/scripts/install-sccache.sh @@ -8,7 +8,7 @@ IFS=$'\n\t' source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" if isMacOS; then - curl -fo /usr/local/bin/sccache "${MIRRORS_BASE}/2018-04-02-sccache-x86_64-apple-darwin" + curl -fo /usr/local/bin/sccache "${MIRRORS_BASE}/2021-08-25-sccache-v0.2.15-x86_64-apple-darwin" chmod +x /usr/local/bin/sccache elif isWindows; then mkdir -p sccache |
