From 339f58de16ac7a31869d189bec6cad7696958546 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Sat, 12 Apr 2025 05:21:26 +0000 Subject: [PATCH] [Github] Add llvm-symbolizer to CI container This is needed for symbolizing some test failures. It is under 8MB, so there is very little cost to adding it. --- .github/workflows/containers/github-action-ci/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/containers/github-action-ci/Dockerfile b/.github/workflows/containers/github-action-ci/Dockerfile index e1e9827737ad..60f47653a078 100644 --- a/.github/workflows/containers/github-action-ci/Dockerfile +++ b/.github/workflows/containers/github-action-ci/Dockerfile @@ -32,7 +32,7 @@ RUN cmake -B ./build -G Ninja ./llvm \ -DLLVM_ENABLE_RUNTIMES="compiler-rt" \ -DCMAKE_INSTALL_PREFIX="$LLVM_SYSROOT" \ -DLLVM_ENABLE_PROJECTS="bolt;clang;lld;clang-tools-extra" \ - -DLLVM_DISTRIBUTION_COMPONENTS="lld;compiler-rt;clang-format;scan-build" \ + -DLLVM_DISTRIBUTION_COMPONENTS="lld;compiler-rt;clang-format;scan-build;llvm-symbolizer" \ -DCLANG_DEFAULT_LINKER="lld" RUN ninja -C ./build stage2-clang-bolt stage2-install-distribution && ninja -C ./build install-distribution