From 0f3c94a3d8013cc6409f364247d1d4e4293fcacd Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Fri, 25 Jul 2025 08:38:13 -0700 Subject: [PATCH] [CI] Remove ccache from Linux CI Container 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. Reviewers: tstellar, gburgessiv, dschuff, Keenuts, lnihlen, cmtice Reviewed By: dschuff, Keenuts, cmtice Pull Request: https://github.com/llvm/llvm-project/pull/149197 --- .github/workflows/containers/github-action-ci/Dockerfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/containers/github-action-ci/Dockerfile b/.github/workflows/containers/github-action-ci/Dockerfile index a6ee623070de..df390716adc6 100644 --- a/.github/workflows/containers/github-action-ci/Dockerfile +++ b/.github/workflows/containers/github-action-ci/Dockerfile @@ -58,10 +58,8 @@ 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 - # tzdata are used for tests. + # dependent python packages. File and tzdata are used for tests. python3-pip \ - ccache \ file \ tzdata && \ apt-get clean && \