Skip to content

Commit

Permalink
Auto merge of rust-lang#133033 - klensy:win.dot, r=<try>
Browse files Browse the repository at this point in the history
turn creating 8dot3 names off for windows for speed

r? `@ghost`

try-job: dist-x86_64-linux
  • Loading branch information
bors committed Nov 15, 2024
2 parents f00f682 + 651b193 commit 99d8aa0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ci/docker/scripts/sccache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ 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://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-unknown-linux-musl.tar.gz"
;;
aarch64)
url="https://ci-mirrors.rust-lang.org/rustc/2021-08-25-sccache-v0.2.15-aarch64-unknown-linux-musl"
Expand All @@ -16,5 +16,7 @@ case "$(uname -m)" in
exit 1
esac

curl -fo /usr/local/bin/sccache "${url}"
curl -fLo sccache.tar.gz "${url}"
tar zxvf sccache.tar.gz --wildcards --no-anchored 'sccache' --strip-components=1
cp sccache /usr/local/bin/sccache
chmod +x /usr/local/bin/sccache
1 change: 1 addition & 0 deletions src/ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -279,5 +279,6 @@ if [ "$RUN_CHECK_WITH_PARALLEL_QUERIES" != "" ]; then
fi

echo "::group::sccache stats"
sccache --version || true
sccache --show-stats || true
echo "::endgroup::"

0 comments on commit 99d8aa0

Please sign in to comment.