From b67ddcf8e6d0a0908224654393916551b288f43a Mon Sep 17 00:00:00 2001 From: Felix Kauselmann Date: Sat, 6 Mar 2021 21:36:25 +0100 Subject: [PATCH] Azure: Update Ubuntu VM to 18.04 Update Ubuntu VM to 18.04 and remove external kubuntu backports PPA previously used to get Qt packages. While we're at it, remove libglu1-mesa-dev package too. The external repo for libunarr is still needed as Ubuntu 18.04 does not package it yet (it is included in 20.04) --- azure-pipelines.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6a148d63..b2aa00bc 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -30,15 +30,14 @@ jobs: - job: Linux dependsOn: CodeFormatValidation pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-18.04' steps: - script: | - sudo add-apt-repository 'deb http://download.opensuse.org/repositories/home:/selmf/xUbuntu_16.04/ /' - sudo add-apt-repository ppa:kubuntu-ppa/backports - sudo apt-get update - sudo apt-get install -y --allow-unauthenticated qt-default qt5-qmake \ + sudo add-apt-repository 'deb http://download.opensuse.org/repositories/home:/selmf/xUbuntu_18.04/ /' + sudo apt-get update --allow-insecure-repositories + sudo apt-get install -y --allow-unauthenticated qt5-default qt5-qmake \ qtbase5-dev qtmultimedia5-dev libpoppler-qt5-dev \ - libqt5opengl5-dev libglu1-mesa-dev libunarr-dev qtdeclarative5-dev libqt5svg5-dev + libqt5opengl5-dev libunarr-dev qtdeclarative5-dev libqt5svg5-dev displayName: 'Install dependencies' - script: | cd $(Build.SourcesDirectory)