From 70e25397c435e8833cc8153d90b66d104330af98 Mon Sep 17 00:00:00 2001 From: Arne Petersen Date: Fri, 10 Jan 2020 10:25:01 +0100 Subject: [PATCH] add emby build job --- azure-pipelines.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cdc4d7723..ac4780798 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -103,6 +103,19 @@ jobs: addon: 'radarr' arch: '--all' +- job: 'emby' + condition: and(eq(variables['Build.SourceBranchName'], 'master'), succeeded('Hadolint'), succeeded('JQ')) + dependsOn: + - 'Hadolint' + - 'JQ' + pool: + vmImage: 'ubuntu-16.04' + steps: + - template: .azure-pipelines/addon-template.yml + parameters: + addon: 'emby' + arch: '--all' + - job: 'jellyfin' condition: and(eq(variables['Build.SourceBranchName'], 'master'), succeeded('Hadolint'), succeeded('JQ')) dependsOn: @@ -114,4 +127,4 @@ jobs: - template: .azure-pipelines/addon-template.yml parameters: addon: 'jellyfin' - arch: '--all' \ No newline at end of file + arch: '--all'