From 3a59bc0209ed28415cbd824d1d63662e8ab5dc64 Mon Sep 17 00:00:00 2001 From: Matt Topol Date: Mon, 15 Aug 2022 15:43:10 -0400 Subject: [PATCH] ARROW-17410: [JS][Integration] Downgrade zlib for integration (#13885) Downgrading to `zlib=1.2.11` fixes the existing issue as reported in https://github.com/madler/zlib/issues/613 until the patch is released. Authored-by: Matt Topol Signed-off-by: Matt Topol --- ci/docker/conda-integration.dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/docker/conda-integration.dockerfile b/ci/docker/conda-integration.dockerfile index 8bcf5954d1db7..ea1cd672aa165 100644 --- a/ci/docker/conda-integration.dockerfile +++ b/ci/docker/conda-integration.dockerfile @@ -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" \ @@ -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