Skip to content

Commit

Permalink
ARROW-17410: [JS][Integration] Downgrade zlib for integration (apache…
Browse files Browse the repository at this point in the history
…#13885)

Downgrading to `zlib=1.2.11` fixes the existing issue as reported in madler/zlib#613 until the patch is released.

Authored-by: Matt Topol <zotthewizard@gmail.com>
Signed-off-by: Matt Topol <zotthewizard@gmail.com>
  • Loading branch information
zeroshade authored and ksuarez1423 committed Aug 15, 2022
1 parent a0e6473 commit 7e62a45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ci/docker/conda-integration.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ ARG go=1.15

# Install Archery and integration dependencies
COPY ci/conda_env_archery.txt /arrow/ci/

# Pin zlib to 1.2.11 due to ARROW-17410 until the patch is released
RUN mamba install -q -y \
--file arrow/ci/conda_env_archery.txt \
"python>=3.7" \
Expand All @@ -35,7 +37,8 @@ RUN mamba install -q -y \
maven=${maven} \
nodejs=${node} \
yarn \
openjdk=${jdk} && \
openjdk=${jdk} \
zlib=1.2.11 && \
mamba clean --all --force-pkgs-dirs

# Install Rust with only the needed components
Expand Down

0 comments on commit 7e62a45

Please sign in to comment.