From 695a737a89604cce2857acea5640ff2f8db19d95 Mon Sep 17 00:00:00 2001 From: Tomoya Tanjo Date: Wed, 23 Jun 2021 06:42:28 +0900 Subject: [PATCH 1/2] Update azure-pipelines.yml to use Ubuntu 20.04 --- azure-pipelines.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index e12cdd60..7c1a838c 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -65,7 +65,7 @@ jobs: - job: LinuxBuild displayName: Linux Build pool: - vmImage: 'ubuntu-16.04' + vmImage: 'ubuntu-20.04' steps: - script: sudo apt-get update -y - script: sudo apt-get install -y libxtst-dev qtdeclarative5-dev libavahi-compat-libdnssd-dev libcurl4-openssl-dev From 57463a31f87252419ef57dab7d29422fe3f692b3 Mon Sep 17 00:00:00 2001 From: Tomoya Tanjo Date: Tue, 29 Jun 2021 00:00:04 +0900 Subject: [PATCH 2/2] Attempt to support several Ubuntu LTSs to CI --- azure-pipelines.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7c1a838c..1ef9a7e0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -63,9 +63,17 @@ jobs: artifactName: Windows Release Installer - job: LinuxBuild + strategy: + matrix: + ubuntu-16.04: + imageName: 'ubuntu-16.04' + ubuntu-18.04: + imageName: 'ubuntu-18.04' + ubuntu-20.04: + imageName: 'ubuntu-20.04' displayName: Linux Build pool: - vmImage: 'ubuntu-20.04' + vmImage: $(imageName) steps: - script: sudo apt-get update -y - script: sudo apt-get install -y libxtst-dev qtdeclarative5-dev libavahi-compat-libdnssd-dev libcurl4-openssl-dev