2019-06-14 12:29:20 -03:00
|
|
|
jobs:
|
|
|
|
- job: Make_Nuget_Layout
|
|
|
|
displayName: Make Nuget layout
|
|
|
|
condition: and(succeeded(), eq(variables['DoNuget'], 'true'))
|
|
|
|
|
|
|
|
pool:
|
2020-02-28 20:21:46 -04:00
|
|
|
vmImage: windows-2019
|
2019-06-14 12:29:20 -03:00
|
|
|
|
|
|
|
workspace:
|
|
|
|
clean: all
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
win32:
|
|
|
|
Name: win32
|
2019-11-20 13:30:47 -04:00
|
|
|
Python: $(Build.BinariesDirectory)\bin\python.exe
|
2019-06-14 12:29:20 -03:00
|
|
|
PYTHONHOME: $(Build.SourcesDirectory)
|
|
|
|
amd64:
|
|
|
|
Name: amd64
|
2019-11-20 13:30:47 -04:00
|
|
|
Python: $(Build.BinariesDirectory)\bin\python.exe
|
|
|
|
PYTHONHOME: $(Build.SourcesDirectory)
|
|
|
|
arm64:
|
|
|
|
Name: arm64
|
|
|
|
HostArch: amd64
|
|
|
|
Python: $(Build.BinariesDirectory)\bin_amd64\python.exe
|
2019-06-14 12:29:20 -03:00
|
|
|
PYTHONHOME: $(Build.SourcesDirectory)
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./checkout.yml
|
|
|
|
|
2019-06-17 19:27:36 -03:00
|
|
|
- task: DownloadPipelineArtifact@1
|
2019-06-14 12:29:20 -03:00
|
|
|
displayName: 'Download artifact: bin_$(Name)'
|
|
|
|
inputs:
|
|
|
|
artifactName: bin_$(Name)
|
2019-06-17 19:27:36 -03:00
|
|
|
targetPath: $(Build.BinariesDirectory)\bin
|
2019-06-14 12:29:20 -03:00
|
|
|
|
2019-08-12 18:09:36 -03:00
|
|
|
- powershell: |
|
|
|
|
copy $(Build.BinariesDirectory)\bin\Activate.ps1 Lib\venv\scripts\common\Activate.ps1 -Force
|
|
|
|
displayName: 'Copy signed files into sources'
|
2019-11-20 13:30:47 -04:00
|
|
|
condition: and(succeeded(), variables['SigningCertificate'])
|
2019-08-12 18:09:36 -03:00
|
|
|
|
2019-06-14 12:29:20 -03:00
|
|
|
- template: ./layout-command.yml
|
|
|
|
|
|
|
|
- powershell: |
|
|
|
|
$(LayoutCmd) --copy "$(Build.ArtifactStagingDirectory)\nuget" --preset-nuget
|
|
|
|
displayName: 'Generate nuget layout'
|
|
|
|
|
2019-06-17 19:27:36 -03:00
|
|
|
- task: PublishPipelineArtifact@0
|
2019-06-14 12:29:20 -03:00
|
|
|
displayName: 'Publish Artifact: layout_nuget_$(Name)'
|
|
|
|
inputs:
|
2019-06-17 19:27:36 -03:00
|
|
|
targetPath: '$(Build.ArtifactStagingDirectory)\nuget'
|
|
|
|
artifactName: layout_nuget_$(Name)
|