From 12f9dcd711b3f810f3031da3e173cbcf4377e728 Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Tue, 9 Feb 2021 11:20:42 +0100 Subject: [PATCH] [centos,windows] update cmake to 3.19.4 --- centos/Dockerfile | 2 +- windows/base/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/centos/Dockerfile b/centos/Dockerfile index c1df189..c90523b 100644 --- a/centos/Dockerfile +++ b/centos/Dockerfile @@ -35,7 +35,7 @@ ADD bash/toolchain.sh /etc/profile.d/toolchain.sh ADD bash/ld-library-path.sh /etc/profile.d/ld-library-path.sh # CMake -RUN version=3.18.4 && \ +RUN version=3.19.4 && \ yum install -y \ curl-devel \ expat-devel \ diff --git a/windows/base/Dockerfile b/windows/base/Dockerfile index ee1bc98..631e5fb 100644 --- a/windows/base/Dockerfile +++ b/windows/base/Dockerfile @@ -13,7 +13,7 @@ RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tl $env:chocolateyUseWindowsCompression = 'true'; \ Invoke-Expression ((New-Object Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')); \ Must-Run choco install -y dotnetfx --version 4.7.2.20180712; \ - Must-Run choco install -y cmake --version 3.18.0 --installargs "ADD_CMAKE_TO_PATH=System"; \ + Must-Run choco install -y cmake --version 3.19.4 --installargs "ADD_CMAKE_TO_PATH=System"; \ Must-Run choco install -y kitware-ninja --version 1.8.2.8127911; \ Must-Run choco install -y \ git \ -- GitLab