mirror of https://github.com/KLayout/klayout.git
Updated Azure configuration
This commit is contained in:
parent
4da7fd6323
commit
1866d318d2
|
|
@ -11,14 +11,14 @@ trigger:
|
||||||
jobs:
|
jobs:
|
||||||
- job: Build
|
- job: Build
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04'
|
vmImage: 'windows-2019' # other options: 'macOS-10.13', 'ubuntu-16.04'
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
# Python27:
|
# Python27:
|
||||||
# python.version: '2.7'
|
# python.version: '2.7'
|
||||||
cp35-cp35m-win_amd64.whl:
|
# cp35-cp35m-win_amd64.whl:
|
||||||
python.version: '3.5'
|
# python.version: '3.5'
|
||||||
python.architecture: 'x64'
|
# python.architecture: 'x64'
|
||||||
cp36-cp36m-win_amd64.whl:
|
cp36-cp36m-win_amd64.whl:
|
||||||
python.version: '3.6'
|
python.version: '3.6'
|
||||||
python.architecture: 'x64'
|
python.architecture: 'x64'
|
||||||
|
|
@ -31,9 +31,12 @@ jobs:
|
||||||
cp39-cp39-win_amd64.whl:
|
cp39-cp39-win_amd64.whl:
|
||||||
python.version: '3.9'
|
python.version: '3.9'
|
||||||
python.architecture: 'x64'
|
python.architecture: 'x64'
|
||||||
cp35-cp35m-win32.whl:
|
cp310-cp310-win_amd64.whl:
|
||||||
python.version: '3.5'
|
python.version: '3.10'
|
||||||
python.architecture: 'x86'
|
python.architecture: 'x64'
|
||||||
|
# cp35-cp35m-win32.whl:
|
||||||
|
# python.version: '3.5'
|
||||||
|
# python.architecture: 'x86'
|
||||||
cp36-cp36m-win32.whl:
|
cp36-cp36m-win32.whl:
|
||||||
python.version: '3.6'
|
python.version: '3.6'
|
||||||
python.architecture: 'x86'
|
python.architecture: 'x86'
|
||||||
|
|
@ -46,6 +49,9 @@ jobs:
|
||||||
cp39-cp39-win32.whl:
|
cp39-cp39-win32.whl:
|
||||||
python.version: '3.9'
|
python.version: '3.9'
|
||||||
python.architecture: 'x86'
|
python.architecture: 'x86'
|
||||||
|
cp310-cp310-win32.whl:
|
||||||
|
python.version: '3.10'
|
||||||
|
python.architecture: 'x86'
|
||||||
maxParallel: 6
|
maxParallel: 6
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -126,9 +132,14 @@ jobs:
|
||||||
displayName: 'Combine Windows wheels and deploy to PyPI'
|
displayName: 'Combine Windows wheels and deploy to PyPI'
|
||||||
dependsOn: Build
|
dependsOn: Build
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'vs2017-win2016' # other options: 'macOS-10.13', 'ubuntu-16.04'
|
vmImage: 'windows-2019' # 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.10.x64'
|
||||||
|
inputs:
|
||||||
|
artifactName: 'wheel-3.10.x64'
|
||||||
|
downloadPath: '$(System.DefaultWorkingDirectory)'
|
||||||
- task: DownloadBuildArtifacts@0
|
- task: DownloadBuildArtifacts@0
|
||||||
displayName: 'Download Build Artifacts wheel-3.9.x64'
|
displayName: 'Download Build Artifacts wheel-3.9.x64'
|
||||||
inputs:
|
inputs:
|
||||||
|
|
@ -150,9 +161,9 @@ jobs:
|
||||||
artifactName: 'wheel-3.6.x64'
|
artifactName: 'wheel-3.6.x64'
|
||||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
downloadPath: '$(System.DefaultWorkingDirectory)'
|
||||||
- task: DownloadBuildArtifacts@0
|
- task: DownloadBuildArtifacts@0
|
||||||
displayName: 'Download Build Artifacts wheel-3.5.x64'
|
displayName: 'Download Build Artifacts wheel-3.10.x86'
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'wheel-3.5.x64'
|
artifactName: 'wheel-3.10.x86'
|
||||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
downloadPath: '$(System.DefaultWorkingDirectory)'
|
||||||
- task: DownloadBuildArtifacts@0
|
- task: DownloadBuildArtifacts@0
|
||||||
displayName: 'Download Build Artifacts wheel-3.9.x86'
|
displayName: 'Download Build Artifacts wheel-3.9.x86'
|
||||||
|
|
@ -174,11 +185,6 @@ jobs:
|
||||||
inputs:
|
inputs:
|
||||||
artifactName: 'wheel-3.6.x86'
|
artifactName: 'wheel-3.6.x86'
|
||||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
downloadPath: '$(System.DefaultWorkingDirectory)'
|
||||||
- task: DownloadBuildArtifacts@0
|
|
||||||
displayName: 'Download Build Artifacts wheel-3.5.x86'
|
|
||||||
inputs:
|
|
||||||
artifactName: 'wheel-3.5.x86'
|
|
||||||
downloadPath: '$(System.DefaultWorkingDirectory)'
|
|
||||||
- task: CopyFiles@2
|
- task: CopyFiles@2
|
||||||
condition: always()
|
condition: always()
|
||||||
inputs:
|
inputs:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue