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:
|
cp37-cp37m-win_amd64.whl:
|
||||||
python.version: '3.7'
|
python.version: '3.7'
|
||||||
python.architecture: 'x64'
|
python.architecture: 'x64'
|
||||||
|
cp38-cp38-win_amd64.whl:
|
||||||
|
python.version: '3.8'
|
||||||
|
python.architecture: 'x64'
|
||||||
cp35-cp35m-win32.whl:
|
cp35-cp35m-win32.whl:
|
||||||
python.version: '3.5'
|
python.version: '3.5'
|
||||||
python.architecture: 'x86'
|
python.architecture: 'x86'
|
||||||
|
|
@ -34,6 +37,9 @@ jobs:
|
||||||
cp37-cp37m-win32.whl:
|
cp37-cp37m-win32.whl:
|
||||||
python.version: '3.7'
|
python.version: '3.7'
|
||||||
python.architecture: 'x86'
|
python.architecture: 'x86'
|
||||||
|
cp38-cp38-win32.whl:
|
||||||
|
python.version: '3.8'
|
||||||
|
python.architecture: 'x86'
|
||||||
maxParallel: 6
|
maxParallel: 6
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -117,6 +123,11 @@ jobs:
|
||||||
vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04'
|
vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04'
|
||||||
steps:
|
steps:
|
||||||
- checkout: none #skip checking out the default repository resource
|
- 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
|
- task: DownloadBuildArtifacts@0
|
||||||
displayName: 'Download Build Artifacts wheel-3.7.x64'
|
displayName: 'Download Build Artifacts wheel-3.7.x64'
|
||||||
inputs:
|
inputs:
|
||||||
|
|
@ -132,6 +143,11 @@ jobs:
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'wheel-3.5.x64'
|
artifactName: 'wheel-3.5.x64'
|
||||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
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
|
- task: DownloadBuildArtifacts@0
|
||||||
displayName: 'Download Build Artifacts wheel-3.7.x86'
|
displayName: 'Download Build Artifacts wheel-3.7.x86'
|
||||||
inputs:
|
inputs:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue