blob: 406ccd859faa6a49fb34a5c60b61e4170b08d71d [file] [log] [blame]
Steve Dower21a92f82019-06-14 08:29:20 -07001steps:
Steve Dowerde148f22019-11-20 09:30:47 -08002- task: DownloadPipelineArtifact@1
3 displayName: 'Download artifact: bin_$(HostArch)'
4 condition: and(succeeded(), variables['HostArch'])
5 inputs:
6 artifactName: bin_$(HostArch)
7 targetPath: $(Build.BinariesDirectory)\bin_$(HostArch)
8
Steve Dower21a92f82019-06-14 08:29:20 -07009- powershell: >
10 Write-Host (
11 '##vso[task.setvariable variable=LayoutCmd]&
Steve Dowerde148f22019-11-20 09:30:47 -080012 "$(Python)"
Steve Dower21a92f82019-06-14 08:29:20 -070013 "{1}\PC\layout"
14 -vv
15 --source "{1}"
Steve Dowerfe2ad922019-06-17 15:27:36 -070016 --build "{0}\bin"
Steve Dowerde148f22019-11-20 09:30:47 -080017 --arch "$(Name)"
Steve Dowerfe2ad922019-06-17 15:27:36 -070018 --temp "{0}\layout-temp"
19 --include-cat "{0}\bin\python.cat"
20 --doc-build "{0}\doc"'
21 -f ("$(Build.BinariesDirectory)", "$(Build.SourcesDirectory)")
22 )
Steve Dower21a92f82019-06-14 08:29:20 -070023 displayName: 'Set LayoutCmd'