mirror of
https://github.com/python/cpython.git
synced 2024-11-28 16:45:42 +01:00
de148f263f
Note that the support is not actually enabled yet, and so we won't be publishing these packages. However, for those who want to build it themselves (even by reusing the Azure Pipelines definition), it's now relatively easy to enable.
24 lines
638 B
YAML
24 lines
638 B
YAML
steps:
|
|
- task: DownloadPipelineArtifact@1
|
|
displayName: 'Download artifact: bin_$(HostArch)'
|
|
condition: and(succeeded(), variables['HostArch'])
|
|
inputs:
|
|
artifactName: bin_$(HostArch)
|
|
targetPath: $(Build.BinariesDirectory)\bin_$(HostArch)
|
|
|
|
- powershell: >
|
|
Write-Host (
|
|
'##vso[task.setvariable variable=LayoutCmd]&
|
|
"$(Python)"
|
|
"{1}\PC\layout"
|
|
-vv
|
|
--source "{1}"
|
|
--build "{0}\bin"
|
|
--arch "$(Name)"
|
|
--temp "{0}\layout-temp"
|
|
--include-cat "{0}\bin\python.cat"
|
|
--doc-build "{0}\doc"'
|
|
-f ("$(Build.BinariesDirectory)", "$(Build.SourcesDirectory)")
|
|
)
|
|
displayName: 'Set LayoutCmd'
|