[llvm-branch-commits] [llvm] release/21.x: [CI] Remove ccache from Linux CI Container (PR #150942)

via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Jul 28 06:08:00 PDT 2025


https://github.com/llvmbot created https://github.com/llvm/llvm-project/pull/150942

Backport 0f3c94a3d8013cc6409f364247d1d4e4293fcacd

Requested by: @boomanaiden154

>From e3643462675242339f442179279ff2e80e222be7 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
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

(cherry picked from commit 0f3c94a3d8013cc6409f364247d1d4e4293fcacd)
---
 .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 efe08ebc221c5..6d4bcb3d1add2 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 \
     sccache && \



More information about the llvm-branch-commits mailing list