[libcxx-commits] [libcxx] [libcxx] Remove package installation for generic-llvm-libc (PR #194259)

via libcxx-commits libcxx-commits at lists.llvm.org
Sun Apr 26 12:56:54 PDT 2026


llvmbot wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-libcxx

Author: Aiden Grossman (boomanaiden154)

<details>
<summary>Changes</summary>

Now that these packages are installed by default in the container image, we no longer need to install them each time we do a build.

---
Full diff: https://github.com/llvm/llvm-project/pull/194259.diff


1 Files Affected:

- (modified) libcxx/utils/ci/run-buildbot (-10) 


``````````diff
diff --git a/libcxx/utils/ci/run-buildbot b/libcxx/utils/ci/run-buildbot
index 7a8a4e6e5193d..59e4bfe5928b4 100755
--- a/libcxx/utils/ci/run-buildbot
+++ b/libcxx/utils/ci/run-buildbot
@@ -451,16 +451,6 @@ generic-hardening-mode-debug)
 generic-llvm-libc)
     clean
 
-    # Install some dependencies that are needed for building the kernel headers
-    # and LLVM libc.
-    # TODO(boomanaiden154): Move these to being part of the base container
-    # image rather than something we install on every run.
-    if [[ -n "$GITHUB_ACTIONS" ]]; then
-        sudo apt-get update
-        sudo apt-get install -y rsync
-        pip3 install pyyaml==6.0.3
-    fi
-
     # Install kernel headers from a known-good Linux kernel version to ensure
     # the test is hermetic.
     export LINUX_VERSION=7.0.1

``````````

</details>


https://github.com/llvm/llvm-project/pull/194259


More information about the libcxx-commits mailing list