summaryrefslogtreecommitdiffstats
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
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()