[llvm-branch-commits] [llvm] [CI][Github] Use newer sccache version in CI container (PR #149196)
Aiden Grossman via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Jul 17 10:14:29 PDT 2025
https://github.com/boomanaiden154 updated https://github.com/llvm/llvm-project/pull/149196
>From 2556dc869fdf78e00aa7abbe68b06c83033ed44e Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Thu, 17 Jul 2025 15:07:26 +0000
Subject: [PATCH] feedback
Created using spr 1.3.4
---
.github/workflows/containers/github-action-ci/Dockerfile | 2 ++
1 file changed, 2 insertions(+)
diff --git a/.github/workflows/containers/github-action-ci/Dockerfile b/.github/workflows/containers/github-action-ci/Dockerfile
index a8a3428a4471a..69c71f638e2ac 100644
--- a/.github/workflows/containers/github-action-ci/Dockerfile
+++ b/.github/workflows/containers/github-action-ci/Dockerfile
@@ -70,6 +70,8 @@ RUN apt-get update && \
# We need sccache for caching. We cannot use the apt repository version because
# it is too old and has bugs related to features we require (particularly GCS
# caching), so we manually install it here.
+# TODO(boomanaiden154): We should return to installing this from the apt
+# repository once a version containing the necessary bug fixes is available.
RUN curl -L 'https://github.com/mozilla/sccache/releases/download/v0.10.0/sccache-v0.10.0-x86_64-unknown-linux-musl.tar.gz' > /tmp/sccache.tar.gz && \
echo "1fbb35e135660d04a2d5e42b59c7874d39b3deb17de56330b25b713ec59f849b /tmp/sccache.tar.gz" | sha256sum -c && \
tar xzf /tmp/sccache.tar.gz -O --wildcards '*/sccache' > '/usr/local/bin/sccache' && \
More information about the llvm-branch-commits
mailing list