tools(docker): bump CMake 3.17.2 -> 3.18.1 in manylinux

This commit is contained in:
Mizux Seiha
2020-08-01 11:32:53 +02:00
parent 0076154c61
commit a49bb7eb26

View File

@@ -20,11 +20,11 @@ RUN yum -y update \
&& yum clean all \
&& rm -rf /var/cache/yum
# Install CMake 3.17.2
RUN wget "https://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.sh" \
&& chmod a+x cmake-3.17.2-Linux-x86_64.sh \
&& ./cmake-3.17.2-Linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.17.2-Linux-x86_64.sh
# Install CMake 3.18.1
RUN wget "https://cmake.org/files/v3.18/cmake-3.18.1-Linux-x86_64.sh" \
&& chmod a+x cmake-3.18.1-Linux-x86_64.sh \
&& ./cmake-3.18.1-Linux-x86_64.sh --prefix=/usr --skip-license \
&& rm cmake-3.18.1-Linux-x86_64.sh
# Install Swig
RUN curl --location-trusted \