Create a job to upload dev builds

For now it will try to download all the artifacts to $(Build.SourcesDirectory)/dev_bin
This commit is contained in:
Luis Ángel San Martín 2019-09-11 10:44:44 +02:00
parent 2649f58f15
commit 6c3b04ec65

View File

@ -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'
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