Skip to content

Commit

Permalink
Add yasm & openslide for cuCIM wheel builds (#91)
Browse files Browse the repository at this point in the history
Co-authored-by: Gregory Lee <[email protected]>
  • Loading branch information
jakirkham and grlee77 authored Nov 3, 2023
1 parent 4be8b78 commit bf7d540
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions ci-wheel.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN case "${LINUX_VER}" in \
jq wget gcc zlib1g-dev libbz2-dev \
libssl-dev libreadline-dev libsqlite3-dev libffi-dev curl git libncurses5-dev \
libnuma-dev openssh-client libcudnn8-dev zip libopenblas-dev liblapack-dev \
protobuf-compiler autoconf automake libtool cmake \
protobuf-compiler autoconf automake libtool cmake yasm libopenslide-dev \
&& add-apt-repository ppa:git-core/ppa \
&& add-apt-repository ppa:ubuntu-toolchain-r/test \
&& apt update -y \
Expand All @@ -46,11 +46,14 @@ RUN case "${LINUX_VER}" in \
;; \
"centos"*) \
yum update --exclude=libnccl* -y \
&& yum install -y epel-release\
&& yum update --exclude=libnccl* -y \
&& yum install -y \
epel-release which wget gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite \
which wget gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite \
sqlite-devel xz xz-devel libffi-devel curl git ncurses-devel numactl \
numactl-devel openssh-clients libcudnn8-devel zip blas-devel lapack-devel \
protobuf-compiler autoconf automake libtool centos-release-scl scl-utils cmake \
yasm openslide-devel \
&& yum remove -y git \
&& yum install -y https://packages.endpointdev.com/rhel/7/os/x86_64/endpoint-repo.x86_64.rpm \
&& yum install -y git jq devtoolset-11 \
Expand All @@ -71,14 +74,17 @@ RUN case "${LINUX_VER}" in \
;; \
"rockylinux"*) \
dnf update -y \
&& dnf install -y epel-release \
&& dnf update -y \
&& dnf install -y \
epel-release which wget gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite \
which wget gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite \
sqlite-devel xz xz-devel libffi-devel curl git ncurses-devel numactl \
numactl-devel openssh-clients libcudnn8-devel zip jq \
numactl-devel openssh-clients libcudnn8-devel zip jq openslide-devel \
protobuf-compiler autoconf automake libtool dnf-plugins-core cmake \
&& dnf config-manager --set-enabled powertools \
&& dnf install -y blas-devel lapack-devel \
&& dnf -y install gcc-toolset-11-gcc gcc-toolset-11-gcc-c++ \
&& dnf -y install yasm \
&& dnf clean all \
&& echo -e ' \
#!/bin/bash\n \
Expand Down

0 comments on commit bf7d540

Please sign in to comment.