Skip to content

Commit 8a12f88

Browse files
[Github] Add Zlib at build time to CI container
This patch adds zlib at build time to the CI container. This is needed to make an lldb test pass that defaults to using the system lld if it is not explicitly enabled in LLVM_ENABLE_PROJECTS. Fixes #123479 (by fixing the proximal cause).
1 parent 106c483 commit 8a12f88

File tree

1 file changed

+2
-1
lines changed
  • .github/workflows/containers/github-action-ci

1 file changed

+2
-1
lines changed

.github/workflows/containers/github-action-ci/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ RUN apt-get update && \
1313
ninja-build \
1414
python3 \
1515
git \
16-
curl
16+
curl \
17+
zlib1g-dev
1718

1819
RUN curl -O -L https://github.com/llvm/llvm-project/archive/refs/tags/llvmorg-$LLVM_VERSION.tar.gz && tar -xf llvmorg-$LLVM_VERSION.tar.gz
1920

0 commit comments

Comments
 (0)