This is an automated email from the ASF dual-hosted git repository.
bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git
The following commit(s) were added to refs/heads/develop by this push:
new ce9871b GEODE-8227: Updates CMake to 3.16.8. (#613)
ce9871b is described below
commit ce9871bd761e2a89bda8c228d9fef71a7e0b03c3
Author: Jacob Barrett <[email protected]>
AuthorDate: Tue Jun 9 13:19:10 2020 -0700
GEODE-8227: Updates CMake to 3.16.8. (#613)
---
docker/Dockerfile | 2 +-
packer/rhel/install-cmake.sh | 2 +-
packer/solaris/install-cmake.sh | 2 +-
packer/ubuntu/install-cmake.sh | 2 +-
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/docker/Dockerfile b/docker/Dockerfile
index 7fea5cc..b000b3e 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -50,7 +50,7 @@ ENV RAT_VERSION 0.13
RUN wget
"https://www.apache.org/dyn/closer.cgi?action=download&filename=creadur/apache-rat-${RAT_VERSION}/apache-rat-${RAT_VERSION}-bin.tar.gz"
--quiet -O - | \
tar xzf -
-ENV CMAKE_VERSION 3.12.4
+ENV CMAKE_VERSION 3.16.8
RUN wget
"https://cmake.org/files/v${CMAKE_VERSION%.*}/cmake-${CMAKE_VERSION}-Linux-x86_64.sh"
--quiet -O /tmp/cmake && \
bash /tmp/cmake --skip-license --prefix=/usr/local && \
rm -rf /tmp/cmake
diff --git a/packer/rhel/install-cmake.sh b/packer/rhel/install-cmake.sh
index 552faae..71afe7e 100644
--- a/packer/rhel/install-cmake.sh
+++ b/packer/rhel/install-cmake.sh
@@ -19,7 +19,7 @@ set -x -e -o pipefail
tmp=`mktemp`
-curl -o ${tmp} -v -L https://cmake.org/files/v3.12/cmake-3.12.4-Linux-x86_64.sh
+curl -o ${tmp} -v -L https://cmake.org/files/v3.16/cmake-3.16.8-Linux-x86_64.sh
bash ${tmp} --skip-license --prefix=/usr/local
diff --git a/packer/solaris/install-cmake.sh b/packer/solaris/install-cmake.sh
index ae92354..b13b7b4 100644
--- a/packer/solaris/install-cmake.sh
+++ b/packer/solaris/install-cmake.sh
@@ -22,7 +22,7 @@ source ~/.bashrc
NCPU=2
pushd `mktemp -d`
-wget -O - https://cmake.org/files/v3.10/cmake-3.10.3.tar.gz | \
+wget -O - https://cmake.org/files/v3.16/cmake-3.16.8.tar.gz | \
gtar --strip-components=1 -zxf -
./bootstrap --system-curl --no-qt-gui --parallel=$NCPU --
-DBUILD_CursesDialog=off
gmake -j$NCPU
diff --git a/packer/ubuntu/install-cmake.sh b/packer/ubuntu/install-cmake.sh
index 552faae..71afe7e 100644
--- a/packer/ubuntu/install-cmake.sh
+++ b/packer/ubuntu/install-cmake.sh
@@ -19,7 +19,7 @@ set -x -e -o pipefail
tmp=`mktemp`
-curl -o ${tmp} -v -L https://cmake.org/files/v3.12/cmake-3.12.4-Linux-x86_64.sh
+curl -o ${tmp} -v -L https://cmake.org/files/v3.16/cmake-3.16.8-Linux-x86_64.sh
bash ${tmp} --skip-license --prefix=/usr/local