-
Notifications
You must be signed in to change notification settings - Fork 14.5k
[CI] Remove ccache from Linux CI Container #149197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: users/boomanaiden154/main.ci-remove-ccache-from-linux-ci-container
Are you sure you want to change the base?
[CI] Remove ccache from Linux CI Container #149197
Conversation
Created using spr 1.3.4
@llvm/pr-subscribers-github-workflow Author: Aiden Grossman (boomanaiden154) ChangesThis patch removes ccache from the Linux CI container. It is no longer Full diff: https://github.com/llvm/llvm-project/pull/149197.diff 1 Files Affected:
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 && \
|
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. Pull Request: llvm#149197
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. Pull Request: llvm#149197
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. Pull Request: llvm#149197
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. Pull Request: llvm#149197
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. Pull Request: llvm#149197
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.