2019-06-14 12:29:20 -03:00
|
|
|
steps:
|
2019-11-20 13:30:47 -04:00
|
|
|
- task: DownloadPipelineArtifact@1
|
|
|
|
displayName: 'Download artifact: bin_$(HostArch)'
|
|
|
|
condition: and(succeeded(), variables['HostArch'])
|
|
|
|
inputs:
|
|
|
|
artifactName: bin_$(HostArch)
|
|
|
|
targetPath: $(Build.BinariesDirectory)\bin_$(HostArch)
|
|
|
|
|
2019-06-14 12:29:20 -03:00
|
|
|
- powershell: >
|
|
|
|
Write-Host (
|
|
|
|
'##vso[task.setvariable variable=LayoutCmd]&
|
2019-11-20 13:30:47 -04:00
|
|
|
"$(Python)"
|
2019-06-14 12:29:20 -03:00
|
|
|
"{1}\PC\layout"
|
|
|
|
-vv
|
|
|
|
--source "{1}"
|
2019-06-17 19:27:36 -03:00
|
|
|
--build "{0}\bin"
|
2019-11-20 13:30:47 -04:00
|
|
|
--arch "$(Name)"
|
2019-06-17 19:27:36 -03:00
|
|
|
--temp "{0}\layout-temp"
|
|
|
|
--include-cat "{0}\bin\python.cat"
|
|
|
|
--doc-build "{0}\doc"'
|
|
|
|
-f ("$(Build.BinariesDirectory)", "$(Build.SourcesDirectory)")
|
|
|
|
)
|
2019-06-14 12:29:20 -03:00
|
|
|
displayName: 'Set LayoutCmd'
|