Skip to content

Commit

Permalink
Use build directory for cucim
Browse files Browse the repository at this point in the history
  • Loading branch information
gigony committed Apr 18, 2021
1 parent 326381b commit d3378c0
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions ci/cpu/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,11 @@ conda config --set ssl_verify False
# runtime library [libcudart.so.11.0] in /opt/conda/envs/rapids/conda-bld/libcucim_1616020264601/_h_env_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_placehold_pl/lib may be hidden by files in:
# /opt/conda/envs/rapids/lib

apt-get update
apt-get install -y tree
echo "tree -a ${WORKSPACE}"
tree -a ${WORKSPACE}

if [ "$BUILD_LIBCUCIM" == 1 ]; then
gpuci_conda_retry build -c conda-forge/label/cupy_rc -c conda-forge -c rapidsai-nightly \
--python=${PYTHON_VER} \
Expand All @@ -89,12 +94,12 @@ if [ "$BUILD_LIBCUCIM" == 1 ]; then
fi

if [ "$BUILD_CUCIM" == 1 ]; then
gpuci_conda_retry build -c conda-forge/label/cupy_rc -c conda-forge -c rapidsai-nightly \
LIBCUCIM_BLD_PATH=$WORKSPACE/ci/artifacts/cucim/cpu/.conda-bld
gpuci_conda_retry build -c ${LIBCUCIM_BLD_PATH} -c conda-forge/label/cupy_rc -c conda-forge -c rapidsai-nightly \
--python=${PYTHON_VER} \
--dirty \
--no-remove-work-dir \
--croot ${CONDA_BLD_DIR} \
--use-local \
conda/recipes/cucim
fi

Expand Down

0 comments on commit d3378c0

Please sign in to comment.