Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ARROW-17410: [JS][Integration] Downgrade zlib for integration #13885

Merged
merged 2 commits into from
Aug 15, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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