[libc++] Install a recent CMake in the Docker build bots

This commit is contained in:
Louis Dionne 2020-03-24 18:06:23 -04:00
parent 1ac403bd14
commit 7311b27403

View File

@ -12,7 +12,6 @@ apt-get update && \
wget \
unzip \
python \
cmake \
ninja-build \
curl \
git \
@ -33,3 +32,8 @@ apt-get update && \
sysvinit-utils \
systemd-sysv && \
rm -rf /var/lib/apt/lists/*
# Install a recent CMake
yes | apt-get purge cmake
wget https://github.com/Kitware/CMake/releases/download/v3.15.2/cmake-3.15.2-Linux-x86_64.sh -O /tmp/install-cmake.sh
bash /tmp/install-cmake.sh --prefix=/usr --exclude-subdir --skip-license