From d2935a9f85bf0fe7e729e7ca8f082d1cec909a0d Mon Sep 17 00:00:00 2001 From: Catherine Lee Date: Wed, 7 May 2025 00:33:39 +0000 Subject: [PATCH] [CI] Upgrade sccache to 0.10.0 (#152957) Newest release handles cuda better, and I think this fixes the cases I saw where some cuda related builds weren't being cached correctly Pull Request resolved: https://github.com/pytorch/pytorch/pull/152957 Approved by: https://github.com/malfet --- .ci/docker/common/install_cache.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/docker/common/install_cache.sh b/.ci/docker/common/install_cache.sh index b2cff619a57..f38cb3d06d8 100644 --- a/.ci/docker/common/install_cache.sh +++ b/.ci/docker/common/install_cache.sh @@ -9,7 +9,7 @@ install_ubuntu() { # Instead use lib and headers from OpenSSL1.1 installed in `install_openssl.sh`` apt-get install -y cargo echo "Checking out sccache repo" - git clone https://github.com/mozilla/sccache -b v0.9.1 + git clone https://github.com/mozilla/sccache -b v0.10.0 cd sccache echo "Building sccache" cargo build --release