From 17a6de82ad8a384be7117fe9e4b8978a04fad93c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Wed, 11 Sep 2019 10:48:49 +0200 Subject: [PATCH] dependsOn is an array --- azure-pipelines.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index c7872451..0e1ee47f 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -101,7 +101,11 @@ jobs: vc_redist_file_name: 'vc_redist.x86.exe' vc_vars: 'vcvars32.bat' - job: PublishDevBuilds - dependsOn: Linux, MacOS, Windows_x86, Windows_x64 + dependsOn: + - Linux + - MacOS + - Windows_x86 + - Windows_x64 condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'develop')) pool: vmImage: 'ubuntu-16.04'