Skip to content

Commit

Permalink
revert removal (upstream CI image wasn't updated yet)
Browse files Browse the repository at this point in the history
  • Loading branch information
grlee77 committed Nov 3, 2023
1 parent 4ca9eff commit a041436
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ rapids-dependency-file-generator \
--matrix "cuda=${RAPIDS_CUDA_VERSION%.*};arch=$(arch);py=${RAPIDS_PY_VERSION}" | tee build_requirements.txt
pip install -r build_requirements.txt

# Building the libjpeg-turbo dependency requires YASM
# Also need to install openslide dev libraries on the system
if ! command -v apt &> /dev/null
then
echo "apt package manager not found, attempting to use yum"
yum install yasm openslide-devel -y
else
echo "apt package manager was found"
apt update
apt install yasm libopenslide-dev -y
fi

# First build the C++ lib using CMake via the run script
echo "libcucim version: `cat VERSION_CPP`"
Expand Down

0 comments on commit a041436

Please sign in to comment.