Skip to content

Commit

Permalink
ENH Replace gpuci_conda_retry with gpuci_mamba_retry (#69)
Browse files Browse the repository at this point in the history
`mamba` was recently added to gpuCI build environment, testing usage and solvability with this PR which should speed up build times.

Authors:
  - Dillon Cullinan (https://github.com/dillon-cullinan)

Approvers:
  - https://github.com/jakirkham
  - AJ Schmidt (https://github.com/ajschmidt8)

URL: #69
  • Loading branch information
dillon-cullinan authored Jul 29, 2021
1 parent 6cd95fc commit e30d2ce
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ci/gpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ gpuci_logger "Activate conda env"
conda activate rapids

gpuci_logger "Install dependencies"
gpuci_conda_retry install -y -c rapidsai-nightly \
gpuci_mamba_retry install -y -c rapidsai-nightly \
"cudatoolkit=${CUDA_VER}.*" \
"rapids-build-env=$MINOR_VERSION.*"

Expand All @@ -69,7 +69,7 @@ CUCIM_BLD_PATH=/opt/conda/envs/rapids/conda-bld
mkdir -p ${CUCIM_BLD_PATH}


gpuci_conda_retry build -c ${LIBCUCIM_BLD_PATH} -c conda-forge -c rapidsai-nightly \
gpuci_mamba_retry build -c ${LIBCUCIM_BLD_PATH} -c conda-forge -c rapidsai-nightly \
--dirty \
--no-remove-work-dir \
--croot ${CUCIM_BLD_PATH} \
Expand All @@ -82,7 +82,7 @@ gpuci_conda_retry build -c ${LIBCUCIM_BLD_PATH} -c conda-forge -c rapidsai-night

# Install cuCIM and its dependencies
gpuci_logger "Installing cuCIM and its dependencies"
gpuci_conda_retry install -y -c ${LIBCUCIM_BLD_PATH} -c ${CUCIM_BLD_PATH} -c rapidsai-nightly \
gpuci_mamba_retry install -y -c ${LIBCUCIM_BLD_PATH} -c ${CUCIM_BLD_PATH} -c rapidsai-nightly \
"rapids-build-env=$MINOR_VERSION.*" \
libcucim \
cucim
Expand Down

0 comments on commit e30d2ce

Please sign in to comment.