From cb6d67cd18b83c7ba0b01d69520cd1136f9ece4d Mon Sep 17 00:00:00 2001 From: Jamie Newbon Date: Tue, 24 Mar 2020 11:59:32 +0000 Subject: [PATCH] #6622 Changed Cmake to 3.14 --- azure-pipelines.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c1c4d4e728..712a6688d9 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -48,14 +48,15 @@ jobs: sudo bash -c "echo 'Europe/London' > /etc/timezone" displayName: 'Sort out timezones for updates' - script: | - wget https://github.com/Kitware/CMake/releases/download/v3.14.7/cmake-3.14.7-Linux-x86_64.sh - chmod +x ./cmake-3.14.7-Linux-x86_64.sh - ./cmake-3.14.7-Linux-x86_64.sh --skip-license - displayName: 'Installing CMake 3.14' - - script: | - sudo DEBIAN_FRONTEND=noninteractive sudo apt-get -y update sudo apt-get -y upgrade + sudo apt install wget + wget https://github.com/Kitware/CMake/releases/download/v3.14.7/cmake-3.14.7-Linux-x86_64.sh + sudo chmod +x ./cmake-3.14.7-Linux-x86_64.sh + sudo ./cmake-3.14.7-Linux-x86_64.sh --skip-license + displayName: 'Installing CMake 3.14' + - script: | + sudo DEBIAN_FRONTEND=noninteractive sudo apt-get -y install git qtbase5-dev build-essential libx11-dev libxtst-dev libgl1-mesa-dev libssl-dev libavahi-compat-libdnssd-dev debhelper devscripts sudo apt-get -y install qttools5-dev qttools5-dev-tools --no-install-recommends #These will try to install gnome if we allow dependancies displayName: 'Install Pakages'