You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ze...@apache.org on 2022/08/15 19:43:17 UTC

[arrow] branch master updated: ARROW-17410: [JS][Integration] Downgrade zlib for integration (#13885)

This is an automated email from the ASF dual-hosted git repository.

zeroshade pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new 3a59bc0209 ARROW-17410: [JS][Integration] Downgrade zlib for integration (#13885)
3a59bc0209 is described below

commit 3a59bc0209ed28415cbd824d1d63662e8ab5dc64
Author: Matt Topol <zo...@gmail.com>
AuthorDate: Mon Aug 15 15:43:10 2022 -0400

    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 <zo...@gmail.com>
    Signed-off-by: Matt Topol <zo...@gmail.com>
---
 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 8bcf5954d1..ea1cd672aa 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