Include Python 3.11 in Azure pipeline's upload

This commit is contained in:
Matthias Koefferlein 2022-12-24 21:54:16 +01:00
parent 49df8ad1d5
commit 1a7acfcdc4
1 changed files with 10 additions and 0 deletions

View File

@ -126,6 +126,11 @@ jobs:
vmImage: 'windows-2019' # other options: 'macOS-10.13', 'ubuntu-16.04'
steps:
- checkout: none #skip checking out the default repository resource
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts wheel-3.11.x64'
inputs:
artifactName: 'wheel-3.11.x64'
downloadPath: '$(System.DefaultWorkingDirectory)'
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts wheel-3.10.x64'
inputs:
@ -151,6 +156,11 @@ jobs:
inputs:
artifactName: 'wheel-3.6.x64'
downloadPath: '$(System.DefaultWorkingDirectory)'
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts wheel-3.11.x86'
inputs:
artifactName: 'wheel-3.11.x86'
downloadPath: '$(System.DefaultWorkingDirectory)'
- task: DownloadBuildArtifacts@0
displayName: 'Download Build Artifacts wheel-3.10.x86'
inputs: