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-msvc
  • Loading branch information
bors committed Nov 15, 2024
2 parents ce40196 + d7db01d commit a58a7c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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::"
4 changes: 3 additions & 1 deletion src/ci/scripts/install-sccache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ if isMacOS; then
chmod +x /usr/local/bin/sccache
elif isWindows; then
mkdir -p sccache
curl -fo sccache/sccache.exe "${MIRRORS_BASE}/2018-04-26-sccache-x86_64-pc-windows-msvc"
curl -fLo sccache.tar.gz "https://github.com/mozilla/sccache/releases/download/v0.3.3/sccache-v0.3.3-x86_64-pc-windows-msvc.tar.gz"
tar zxvf sccache.tar.gz --wildcards --no-anchored 'sccache.exe' --strip-components=1
mv sccache.exe sccache
ciCommandAddPath "$(pwd)/sccache"
fi

Expand Down

0 comments on commit a58a7c3

Please sign in to comment.