Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Upgrade CMake for CI runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladimir Cherepanov committed Oct 5, 2021
1 parent 61578a2 commit 815ba93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ci/docker/Dockerfile.build.centos7
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ SHELL [ "/usr/bin/scl", "enable", "devtoolset-7", "rh-python36", "rh-maven35" ]

# Install minimum required cmake version
RUN cd /usr/local/src && \
wget -nv https://cmake.org/files/v3.13/cmake-3.13.5-Linux-x86_64.sh && \
sh cmake-3.13.5-Linux-x86_64.sh --prefix=/usr/local --skip-license && \
rm cmake-3.13.5-Linux-x86_64.sh
wget -nv https://cmake.org/files/v3.21/cmake-3.21.3-linux-x86_64.sh && \
sh cmake-3.21.3-Linux-x86_64.sh --prefix=/usr/local --skip-license && \
rm cmake-3.21.3-Linux-x86_64.sh

# ccache 3.7.9 has fixes for caching nvcc outputs
RUN cd /usr/local/src && \
Expand Down
2 changes: 1 addition & 1 deletion ci/docker/Dockerfile.build.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ RUN cd /usr/local/src && \
# Python & cmake
COPY install/requirements /work/
RUN python3 -m pip install --upgrade pip && \
python3 -m pip install cmake==3.16.6 && \
python3 -m pip install cmake==3.21.3 && \
python3 -m pip install -r /work/requirements

ARG USER_ID=0
Expand Down

0 comments on commit 815ba93

Please sign in to comment.