[Ubuntu] Update CMake to 3.19.1 (#2126)

Update CMake from 3.17.0 to 3.19.1 on the Linux/Ubuntu images. Release notes: https://cmake.org/cmake/help/latest/release/index.html
This commit is contained in:
Ewout ter Hoeven
2020-11-26 09:04:25 +01:00
committed by GitHub
parent 1424801fba
commit b170f4b6c6

View File

@@ -9,7 +9,7 @@ echo "Checking to see if the installer script has already been run"
if command -v cmake; then
echo "cmake is already installed"
else
curl -sL https://cmake.org/files/v3.17/cmake-3.17.0-Linux-x86_64.sh -o cmakeinstall.sh \
curl -sL https://cmake.org/files/v3.19/cmake-3.19.1-Linux-x86_64.sh -o cmakeinstall.sh \
&& chmod +x cmakeinstall.sh \
&& ./cmakeinstall.sh --prefix=/usr/local --exclude-subdir \
&& rm cmakeinstall.sh