File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,14 @@ source ./hack/jenkins/installers/check_install_linux_crons.sh
3636
3737# Make sure all required packages are installed
3838sudo apt-get update
39- sudo apt-get -y install build-essential unzip rsync bc python3 p7zip-full
39+ sudo apt-get -y install build-essential unzip rsync bc python3 p7zip-full cmake
40+
41+ # Log Cmake version
42+ CMAKE_VERSION=$( cmake --version | head -n1 | awk ' {print $3}' )
43+ echo " Start of ISO build: CMake version: $CMAKE_VERSION "
44+ if dpkg --compare-versions " $CMAKE_VERSION " lt " 3.20" ; then
45+ echo " WARNING: CMake version $CMAKE_VERSION is less than 3.20. this will cause a slower build due to rebuidling cmake ..."
46+ fi
4047
4148# Let's make sure we have the newest ISO reference
4249curl -L https://github.com/kubernetes/minikube/raw/master/Makefile --output Makefile-head
You can’t perform that action at this time.
0 commit comments