mirror of https://github.com/KLayout/klayout.git
Updated azure pipeline for Python 3.8
This commit is contained in:
parent
5caa9a79fb
commit
db7e440a8b
|
|
@ -25,6 +25,9 @@ jobs:
|
|||
cp37-cp37m-win_amd64.whl:
|
||||
python.version: '3.7'
|
||||
python.architecture: 'x64'
|
||||
cp38-cp38-win_amd64.whl:
|
||||
python.version: '3.8'
|
||||
python.architecture: 'x64'
|
||||
cp35-cp35m-win32.whl:
|
||||
python.version: '3.5'
|
||||
python.architecture: 'x86'
|
||||
|
|
@ -34,6 +37,9 @@ jobs:
|
|||
cp37-cp37m-win32.whl:
|
||||
python.version: '3.7'
|
||||
python.architecture: 'x86'
|
||||
cp38-cp38-win32.whl:
|
||||
python.version: '3.8'
|
||||
python.architecture: 'x86'
|
||||
maxParallel: 6
|
||||
|
||||
steps:
|
||||
|
|
@ -117,6 +123,11 @@ jobs:
|
|||
vmImage: 'vs2017-win2016' # 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.8.x64'
|
||||
inputs:
|
||||
artifactName: 'wheel-3.8.x64'
|
||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
||||
- task: DownloadBuildArtifacts@0
|
||||
displayName: 'Download Build Artifacts wheel-3.7.x64'
|
||||
inputs:
|
||||
|
|
@ -132,6 +143,11 @@ jobs:
|
|||
inputs:
|
||||
artifactName: 'wheel-3.5.x64'
|
||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
||||
- task: DownloadBuildArtifacts@0
|
||||
displayName: 'Download Build Artifacts wheel-3.8.x86'
|
||||
inputs:
|
||||
artifactName: 'wheel-3.8.x86'
|
||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
||||
- task: DownloadBuildArtifacts@0
|
||||
displayName: 'Download Build Artifacts wheel-3.7.x86'
|
||||
inputs:
|
||||
|
|
|
|||
Loading…
Reference in New Issue