[libc++] Update the version of CMake in the Docker image
authorLouis Dionne <ldionne.2@gmail.com>
Tue, 17 Aug 2021 17:35:50 +0000 (13:35 -0400)
committerLouis Dionne <ldionne.2@gmail.com>
Tue, 17 Aug 2021 17:35:57 +0000 (13:35 -0400)
libcxx/utils/ci/Dockerfile

index 276e5a5..78a779b 100644 (file)
@@ -62,7 +62,7 @@ RUN add-apt-repository ppa:ubuntu-toolchain-r/test
 RUN apt-get update && apt install -y gcc-$GCC_LATEST_VERSION g++-$GCC_LATEST_VERSION
 
 # Install a recent CMake
-RUN wget https://github.com/Kitware/CMake/releases/download/v3.18.2/cmake-3.18.2-Linux-x86_64.sh -O /tmp/install-cmake.sh
+RUN wget https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1-linux-x86_64.sh -O /tmp/install-cmake.sh
 RUN bash /tmp/install-cmake.sh --prefix=/usr --exclude-subdir --skip-license
 RUN rm /tmp/install-cmake.sh