Skip to content

Commit c6368be

Browse files
authored
Move to the OS-latest image tags on Azure Pipelines (#2461)
1 parent dcecda6 commit c6368be

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pr:
77
jobs:
88
- job: linux_311
99
timeoutInMinutes: 180
10-
pool: {vmImage: 'Ubuntu-22.04'}
10+
pool: {vmImage: 'ubuntu-latest'}
1111
steps:
1212
- task: UsePythonVersion@0
1313
inputs:
@@ -25,7 +25,7 @@ jobs:
2525
python ./bin/run_tests.py
2626
2727
- job: macos_311
28-
pool: {vmImage: 'macOS-13'}
28+
pool: {vmImage: 'macOS-latest'}
2929
timeoutInMinutes: 120
3030
steps:
3131
- task: UsePythonVersion@0
@@ -43,7 +43,7 @@ jobs:
4343
python ./bin/run_tests.py
4444
4545
- job: windows_311
46-
pool: {vmImage: 'windows-2019'}
46+
pool: {vmImage: 'windows-latest'}
4747
timeoutInMinutes: 180
4848
steps:
4949
- task: UsePythonVersion@0

examples/azure-pipelines-minimal.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
jobs:
22
- job: linux
3-
pool: {vmImage: 'Ubuntu-20.04'}
3+
pool: {vmImage: 'ubuntu-latest'}
44
steps:
55
- task: UsePythonVersion@0
66
- bash: |
@@ -14,7 +14,7 @@ jobs:
1414
inputs: {pathtoPublish: 'wheelhouse'}
1515

1616
- job: macos
17-
pool: {vmImage: 'macOS-13'}
17+
pool: {vmImage: 'macOS-latest'}
1818
steps:
1919
- task: UsePythonVersion@0
2020
- bash: |
@@ -28,7 +28,7 @@ jobs:
2828
inputs: {pathtoPublish: wheelhouse}
2929

3030
- job: windows
31-
pool: {vmImage: 'windows-2019'}
31+
pool: {vmImage: 'windows-latest'}
3232
steps:
3333
- task: UsePythonVersion@0
3434
- bash: |

0 commit comments

Comments
 (0)