Skip to content

Commit

Permalink
[Github] Add Zlib at build time to CI container (llvm#123489)
Browse files Browse the repository at this point in the history
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 llvm#123479 (by fixing the proximal cause).
  • Loading branch information
boomanaiden154 authored Jan 20, 2025
1 parent 3d08fa2 commit e68d18c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/containers/github-action-ci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ RUN apt-get update && \
ninja-build \
python3 \
git \
curl
curl \
zlib1g-dev

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

Expand Down

0 comments on commit e68d18c

Please sign in to comment.