[llvm-branch-commits] [CI] Remove ccache from Linux CI Container (PR #149197)
via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed Jul 16 14:48:56 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Aiden Grossman (boomanaiden154)
<details>
<summary>Changes</summary>
This patch removes ccache from the Linux CI container. It is no longer
needed after migrating the monolithic-linux.sh script. The other two
upstream users of this container, namely the post commit static analyzer
and the llvm tests workflow both already use sccache.
---
Full diff: https://github.com/llvm/llvm-project/pull/149197.diff
1 Files Affected:
- (modified) .github/workflows/containers/github-action-ci/Dockerfile (+1-2)
``````````diff
diff --git a/.github/workflows/containers/github-action-ci/Dockerfile b/.github/workflows/containers/github-action-ci/Dockerfile
index a8a3428a4471a..74bef3de6dc3c 100644
--- a/.github/workflows/containers/github-action-ci/Dockerfile
+++ b/.github/workflows/containers/github-action-ci/Dockerfile
@@ -58,10 +58,9 @@ RUN apt-get update && \
python3-psutil \
sudo \
# These are needed by the premerge pipeline. Pip is used to install
- # dependent python packages and ccache is used for build caching. File and
+ # dependent python packages and sccache is used for build caching. File and
# tzdata are used for tests.
python3-pip \
- ccache \
file \
tzdata && \
apt-get clean && \
``````````
</details>
https://github.com/llvm/llvm-project/pull/149197
More information about the llvm-branch-commits
mailing list