Steve Dower | 21a92f8 | 2019-06-14 08:29:20 -0700 | [diff] [blame] | 1 | steps: |
Steve Dower | de148f2 | 2019-11-20 09:30:47 -0800 | [diff] [blame] | 2 | - 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 Dower | 21a92f8 | 2019-06-14 08:29:20 -0700 | [diff] [blame] | 9 | - powershell: > |
| 10 | Write-Host ( |
| 11 | '##vso[task.setvariable variable=LayoutCmd]& |
Steve Dower | de148f2 | 2019-11-20 09:30:47 -0800 | [diff] [blame] | 12 | "$(Python)" |
Steve Dower | 21a92f8 | 2019-06-14 08:29:20 -0700 | [diff] [blame] | 13 | "{1}\PC\layout" |
| 14 | -vv |
| 15 | --source "{1}" |
Steve Dower | fe2ad92 | 2019-06-17 15:27:36 -0700 | [diff] [blame] | 16 | --build "{0}\bin" |
Steve Dower | de148f2 | 2019-11-20 09:30:47 -0800 | [diff] [blame] | 17 | --arch "$(Name)" |
Steve Dower | fe2ad92 | 2019-06-17 15:27:36 -0700 | [diff] [blame] | 18 | --temp "{0}\layout-temp" |
| 19 | --include-cat "{0}\bin\python.cat" |
| 20 | --doc-build "{0}\doc"' |
| 21 | -f ("$(Build.BinariesDirectory)", "$(Build.SourcesDirectory)") |
| 22 | ) |
Steve Dower | 21a92f8 | 2019-06-14 08:29:20 -0700 | [diff] [blame] | 23 | displayName: 'Set LayoutCmd' |