Skip to content

Commit

Permalink
Merge branch-23.08 into branch-23.10
Browse files Browse the repository at this point in the history
  • Loading branch information
pxLi committed Jul 28, 2023
2 parents 3bf5068 + e9d9dc9 commit 23f5687
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions jenkins/Dockerfile-blossom.integration.rocky
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86
rm -f ~/miniconda.sh
ENV PATH="/opt/conda/bin:$MAVEN_HOME/bin:${PATH}"
# 'pyarrow' and 'pandas' will be installed as the dependencies of cudf below
RUN conda install -y -c conda-forge mamba=1.4.9 libarchive && \
mamba install -y -c rapidsai -c rapidsai-nightly -c nvidia -c conda-forge -c defaults cudf=${CUDF_VER} python=3.9 cuda-toolkit=${CUDA_VER} && \
RUN export CUDA_VER=`echo ${CUDA_VER} | cut -d '.' -f 1,2` && \
conda install -y -c conda-forge mamba=1.4.9 libarchive && \
mamba install -y -c rapidsai -c rapidsai-nightly -c nvidia -c conda-forge -c defaults cudf=${CUDF_VER} python=3.9 cuda-version=${CUDA_VER} && \
mamba install -y spacy && python -m spacy download en_core_web_sm && \
mamba install -y -c anaconda pytest requests && \
mamba install -y -c conda-forge sre_yield && \
Expand Down
5 changes: 3 additions & 2 deletions jenkins/Dockerfile-blossom.integration.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,9 @@ RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86
rm -f ~/miniconda.sh
ENV PATH="/opt/conda/bin:$MAVEN_HOME/bin:${PATH}"
# 'pyarrow' and 'pandas' will be installed as the dependencies of cudf below
RUN conda install -y -c conda-forge mamba=1.4.9 libarchive && \
mamba install -y -c rapidsai -c rapidsai-nightly -c nvidia -c conda-forge -c defaults cudf=${CUDF_VER} python=3.9 cuda-toolkit=${CUDA_VER} && \
RUN export CUDA_VER=`echo ${CUDA_VER} | cut -d '.' -f 1,2` && \
conda install -y -c conda-forge mamba=1.4.9 libarchive && \
mamba install -y -c rapidsai -c rapidsai-nightly -c nvidia -c conda-forge -c defaults cudf=${CUDF_VER} python=3.9 cuda-version=${CUDA_VER} && \
mamba install -y spacy && python -m spacy download en_core_web_sm && \
mamba install -y -c anaconda pytest requests && \
mamba install -y -c conda-forge sre_yield && \
Expand Down
4 changes: 2 additions & 2 deletions jenkins/databricks/init_cudf_udf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
set -ex

CUDF_VER=${CUDF_VER:-23.10}
CUDA_VER=${CUDA_VER:-11.8.0}
CUDA_VER=${CUDA_VER:-11.8}

# Need to explicitly add conda into PATH environment, to activate conda environment.
export PATH=/databricks/conda/bin:$PATH
Expand Down Expand Up @@ -50,7 +50,7 @@ conda install -y -c conda-forge mamba python=$PYTHON_VERSION
${base}/envs/cudf-udf/bin/mamba remove -y c-ares zstd libprotobuf pandas || true

REQUIRED_PACKAGES=(
cuda-toolkit=$CUDA_VER
cuda-version=$CUDA_VER
cudf=$CUDF_VER
findspark
pandas
Expand Down

0 comments on commit 23f5687

Please sign in to comment.