[llvm] [Github] Install `llvm-tools` in libc container (PR #210414)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Jul 18 14:30:14 PDT 2026
llvmorg-github-actions[bot] wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: hulxv (hulxv)
<details>
<summary>Changes</summary>
Currently, the libc container doesn't contain `llvm-tools`. we need to use them in #<!-- -->200196 because we are not able to use `llvm-lit` without building clang from source
---
Full diff: https://github.com/llvm/llvm-project/pull/210414.diff
1 Files Affected:
- (modified) .github/workflows/containers/libc/Dockerfile (+2)
``````````diff
diff --git a/.github/workflows/containers/libc/Dockerfile b/.github/workflows/containers/libc/Dockerfile
index 69f5b11cead62..063eb76326fb3 100644
--- a/.github/workflows/containers/libc/Dockerfile
+++ b/.github/workflows/containers/libc/Dockerfile
@@ -45,6 +45,8 @@ RUN wget https://apt.llvm.org/llvm.sh && \
sudo ./llvm.sh 23 && \
rm llvm.sh
+RUN apt-get install -y llvm-23-tools
+
# Install gmp and mpfr for cross compilation
RUN wget https://ftp.gnu.org/gnu/gmp/gmp-6.3.0.tar.xz && \
tar -xf gmp-6.3.0.tar.xz && \
``````````
</details>
https://github.com/llvm/llvm-project/pull/210414
More information about the llvm-commits
mailing list