From 9c7745fa1157b8e18d20739ab88cdca909c2d0f9 Mon Sep 17 00:00:00 2001 From: Peixin Li Date: Mon, 9 Oct 2023 12:07:59 +0800 Subject: [PATCH] Remove using mamba before they fix the incompatibility issue Signed-off-by: Peixin Li --- jenkins/Dockerfile-blossom.integration.rocky | 5 +++-- jenkins/Dockerfile-blossom.integration.ubuntu | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/jenkins/Dockerfile-blossom.integration.rocky b/jenkins/Dockerfile-blossom.integration.rocky index a5f90a0271c..59c27fbd9a1 100644 --- a/jenkins/Dockerfile-blossom.integration.rocky +++ b/jenkins/Dockerfile-blossom.integration.rocky @@ -45,8 +45,9 @@ RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86 /bin/bash ~/miniconda.sh -b -p /opt/conda && \ rm -f ~/miniconda.sh ENV PATH="/opt/conda/bin:$MAVEN_HOME/bin:${PATH}" -RUN conda init && \ - conda config --set solver libmamba +RUN conda init +# TODO: re-enable mamba solver after https://github.com/NVIDIA/spark-rapids/issues/9393 +# conda config --set solver libmamba # 'pyarrow' and 'pandas' will be installed as the dependencies of cudf below RUN export CUDA_VER=`echo ${CUDA_VER} | cut -d '.' -f 1,2` && \ diff --git a/jenkins/Dockerfile-blossom.integration.ubuntu b/jenkins/Dockerfile-blossom.integration.ubuntu index 3a635465f64..05ce2d12e20 100644 --- a/jenkins/Dockerfile-blossom.integration.ubuntu +++ b/jenkins/Dockerfile-blossom.integration.ubuntu @@ -57,8 +57,9 @@ RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86 /bin/bash ~/miniconda.sh -b -p /opt/conda && \ rm -f ~/miniconda.sh ENV PATH="/opt/conda/bin:$MAVEN_HOME/bin:${PATH}" -RUN conda init && \ - conda config --set solver libmamba +RUN conda init +# TODO: re-enable mamba solver after https://github.com/NVIDIA/spark-rapids/issues/9393 +# conda config --set solver libmamba # 'pyarrow' and 'pandas' will be installed as the dependencies of cudf below RUN export CUDA_VER=`echo ${CUDA_VER} | cut -d '.' -f 1,2` && \