Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 076ef62

Browse files
committed
CI: tweak the vm images we use on azure
This is prompted by the osx image we were using being deprecated [1]. Looking at [2] to update the osx images, found we are now a version behind on both win and linux as well. Change so that the newer python versions run on newer images. [1] https://devblogs.microsoft.com/devops/removing-older-images-in-azure-pipelines-hosted-pools/ [2] https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops
1 parent 4db2b2b commit 076ef62

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

azure-pipelines.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ strategy:
1212
vmImage: 'ubuntu-16.04'
1313
python.version: '3.7'
1414
Linux_py38:
15-
vmImage: 'ubuntu-16.04'
15+
vmImage: 'ubuntu-18.04'
1616
python.version: '3.8'
1717
macOS_py36:
18-
vmImage: 'xcode9-macOS10.13'
18+
vmImage: 'macOS-10.14'
1919
python.version: '3.6'
2020
macOS_py37:
21-
vmImage: 'xcode9-macOS10.13'
21+
vmImage: 'macOS-10.15'
2222
python.version: '3.7'
2323
macOS_py38:
24-
vmImage: 'xcode9-macOS10.13'
24+
vmImage: 'macOS-latest'
2525
python.version: '3.8'
2626
Windows_py36:
2727
vmImage: 'vs2017-win2016'
@@ -30,7 +30,7 @@ strategy:
3030
vmImage: 'vs2017-win2016'
3131
python.version: '3.7'
3232
Windows_py38:
33-
vmImage: 'vs2017-win2016'
33+
vmImage: 'windows-latest'
3434
python.version: '3.8'
3535
Windows_pyPre:
3636
vmImage: 'vs2017-win2016'

0 commit comments

Comments
 (0)