aboutsummaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-11-10 00:54:35 -0500
committerLibravatarUnit 193 <unit193@unit193.net>2021-11-10 00:54:35 -0500
commit58fb7a0cee13d84170aac52f3f89d91888e1afe3 (patch)
tree1d6312ba15f9ece5a8031e5280dfb8b38be8dfa3 /azure-pipelines.yml
parent28db84b46139c9bb2bbcac8c6cc56e71d1e35629 (diff)
parentbeb08eb751fa8e1f72042f263316ab5e5ddb596d (diff)
Update upstream source from tag 'upstream/2.4.0+dfsg'
Update to upstream version '2.4.0+dfsg' with Debian dir 4b6668cc08c7b0e56b1e1f7b4e89ecdb316182a0
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml29
1 files changed, 22 insertions, 7 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index e12cdd6..e34a3bc 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -63,9 +63,15 @@ jobs:
artifactName: Windows Release Installer
- job: LinuxBuild
+ strategy:
+ matrix:
+ ubuntu-18.04:
+ imageName: 'ubuntu-18.04'
+ ubuntu-20.04:
+ imageName: 'ubuntu-20.04'
displayName: Linux Build
pool:
- vmImage: 'ubuntu-16.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
@@ -75,13 +81,22 @@ jobs:
- job: MacBuild
displayName: Mac Build
- pool:
- vmImage: 'macOS-10.14'
strategy:
matrix:
- Release:
- B_BUILD_TYPE: Release
- BARRIER_VERSION_STAGE: Release
+ big-sur-Release:
+ imageName: "macOS-11"
+ B_BUILD_TYPE: Release
+ BARRIER_VERSION_STAGE: Release
+ catalina-Release:
+ imageName: "macOS-10.15"
+ B_BUILD_TYPE: Release
+ BARRIER_VERSION_STAGE: Release
+ mojave-Release:
+ imageName: "macOS-10.14"
+ B_BUILD_TYPE: Release
+ BARRIER_VERSION_STAGE: Release
+ pool:
+ vmImage: $(imageName)
variables:
VERBOSE: 1
TERM: xterm-256color
@@ -99,4 +114,4 @@ jobs:
condition: eq(variables['B_BUILD_TYPE'], 'Release')
inputs:
pathtoPublish: build/bundle
- artifactName: Mac Release Disk Image and App
+ artifactName: Mac Release Disk Image and App $(imageName)