2019-06-14 12:29:20 -03:00
|
|
|
steps:
|
|
|
|
- powershell: >
|
|
|
|
Write-Host (
|
|
|
|
'##vso[task.setvariable variable=LayoutCmd]&
|
2019-06-17 19:27:36 -03:00
|
|
|
"{0}\bin\python.exe"
|
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"
|
|
|
|
--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'
|