summaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2018-10-13 18:07:16 +0200
committerJay Berkenbilt <ejb@ql.org>2018-10-14 00:30:55 +0200
commit9d1f885f04d6cb63b722b89ece9e0a82831756d4 (patch)
tree2b3da2c3b6194d28488fed3e419d8dac408dfdb3 /azure-pipelines.yml
parent8d6f923e130fa2266bab5dcb799c5b5cd2f391d0 (diff)
downloadqpdf-9d1f885f04d6cb63b722b89ece9e0a82831756d4.tar.zst
Build AppImage from pipeline
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 963ef92b..6d841b75 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -70,3 +70,17 @@ jobs:
displayName: 'Mac build and test'
dependsOn: Linux
condition: succeeded()
+- job: AppImage
+ pool:
+ vmImage: ubuntu-16.04
+ steps:
+ - script: azure-pipelines/build-appimage
+ displayName: 'Build AppImage'
+ - task: PublishBuildArtifacts@1
+ inputs:
+ pathtoPublish: '$(System.DefaultWorkingDirectory)/distribution'
+ artifactName: distribution
+ displayName: 'Upload AppImage'
+ condition: eq(variables['System.PullRequest.IsFork'], 'False')
+ dependsOn: Linux
+ condition: succeeded()