You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ma...@apache.org on 2021/11/02 21:23:46 UTC

[tvm] branch main updated: Bump the CMake version in ubuntu_install_cmake_source.sh to 3.14.7. (#9424)

This is an automated email from the ASF dual-hosted git repository.

masahi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new 95bab00  Bump the CMake version in ubuntu_install_cmake_source.sh to 3.14.7. (#9424)
95bab00 is described below

commit 95bab004b4d6edb351fd556b4ac2363f362d26d7
Author: Leandro Nunes <le...@arm.com>
AuthorDate: Tue Nov 2 21:23:17 2021 +0000

    Bump the CMake version in ubuntu_install_cmake_source.sh to 3.14.7. (#9424)
    
    * This is required in platforms we need to build xgboost from source
     * Fixes #9414
---
 docker/install/ubuntu_install_cmake_source.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docker/install/ubuntu_install_cmake_source.sh b/docker/install/ubuntu_install_cmake_source.sh
index f818fba..18335c9 100644
--- a/docker/install/ubuntu_install_cmake_source.sh
+++ b/docker/install/ubuntu_install_cmake_source.sh
@@ -20,8 +20,8 @@ set -e
 set -u
 set -o pipefail
 
-v=3.13
-version=3.13.5
+v=3.14
+version=3.14.7
 wget https://cmake.org/files/v${v}/cmake-${version}.tar.gz
 tar xvf cmake-${version}.tar.gz
 cd cmake-${version}