Skip to content

Commit e68d18c

Browse files
[Github] Add Zlib at build time to CI container (#123489)
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 3d08fa2 commit e68d18c

File tree

1 file changed

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

1 file changed

+2
-1
lines changed

Diff for: .github/workflows/containers/github-action-ci/Dockerfile

+2-1
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)