From 6c3b04ec6537a2552b13f10a3c61fd3c425a4a08 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:44:44 +0200 Subject: [PATCH] Create a job to upload dev builds For now it will try to download all the artifacts to $(Build.SourcesDirectory)/dev_bin --- azure-pipelines.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index dccab02a..c7872451 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -99,4 +99,17 @@ jobs: qt_aqt_spec: 'win32_msvc2017' vc_redist_url: 'https://go.microsoft.com/fwlink/?LinkId=746571' vc_redist_file_name: 'vc_redist.x86.exe' - vc_vars: 'vcvars32.bat' \ No newline at end of file + vc_vars: 'vcvars32.bat' +- job: PublishDevBuilds + dependsOn: Linux, MacOS, Windows_x86, Windows_x64 + condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'develop')) + pool: + vmImage: 'ubuntu-16.04' + steps: + - task: DownloadPipelineArtifact@2 + inputs: + buildType: 'current' + targetPath: $(Build.SourcesDirectory)/dev_bin + - script: | + ls -lah $(Build.SourcesDirectory)/dev_bin + \ No newline at end of file