45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
YAML
jobs:
|
|
- job: Make_Nuget_Layout
|
|
displayName: Make Nuget layout
|
|
condition: and(succeeded(), eq(variables['DoNuget'], 'true'))
|
|
|
|
pool:
|
|
vmName: win2016-vs2017
|
|
|
|
workspace:
|
|
clean: all
|
|
|
|
strategy:
|
|
matrix:
|
|
win32:
|
|
Name: win32
|
|
Python: $(Build.BinariesDirectory)\bin_$(Name)\python.exe
|
|
PYTHONHOME: $(Build.SourcesDirectory)
|
|
amd64:
|
|
Name: amd64
|
|
Python: $(Build.BinariesDirectory)\bin_$(Name)\python.exe
|
|
PYTHONHOME: $(Build.SourcesDirectory)
|
|
|
|
steps:
|
|
- template: ./checkout.yml
|
|
|
|
- task: DownloadPipelineArtifact@1
|
|
displayName: 'Download artifact: bin_$(Name)'
|
|
inputs:
|
|
artifactName: bin_$(Name)
|
|
targetPath: $(Build.BinariesDirectory)\bin
|
|
|
|
- template: ./layout-command.yml
|
|
|
|
- powershell: |
|
|
$(LayoutCmd) --copy "$(Build.ArtifactStagingDirectory)\nuget" --preset-nuget
|
|
displayName: 'Generate nuget layout'
|
|
env:
|
|
TCL_LIBRARY: $(Build.BinariesDirectory)\bin_$(Name)\tcl\tcl8
|
|
|
|
- task: PublishPipelineArtifact@0
|
|
displayName: 'Publish Artifact: layout_nuget_$(Name)'
|
|
inputs:
|
|
targetPath: '$(Build.ArtifactStagingDirectory)\nuget'
|
|
artifactName: layout_nuget_$(Name)
|