diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-01-21 19:38:36 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-21 19:38:36 (GMT) |
commit | caa6bcfb8c85e79df1ed55e2de971ec15a2e3886 (patch) | |
tree | fff5ae8149c69a9e3c49d5abc4e1cd112979c612 | |
parent | 9532c04151a088c3da4757272fa9bee715bb9388 (diff) | |
download | cpython-caa6bcfb8c85e79df1ed55e2de971ec15a2e3886.zip cpython-caa6bcfb8c85e79df1ed55e2de971ec15a2e3886.tar.gz cpython-caa6bcfb8c85e79df1ed55e2de971ec15a2e3886.tar.bz2 |
[3.10] Bump Azure Pipelines to ubuntu-22.04 (GH-101089) (#101213)
Bump Azure Pipelines to ubuntu-22.04 (GH-101089)
(cherry picked from commit c22a55c8b4f142ff679880ec954691d5920b7845)
Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
-rw-r--r-- | .azure-pipelines/ci.yml | 8 | ||||
-rw-r--r-- | .azure-pipelines/pr.yml | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index 8dd79ee..133699d 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -8,7 +8,7 @@ jobs: displayName: Pre-build checks pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 steps: - template: ./prebuild-checks.yml @@ -20,7 +20,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['docs.run'], 'true')) pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 steps: - template: ./docs-steps.yml @@ -52,7 +52,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 variables: testRunTitle: '$(build.sourceBranchName)-linux' @@ -78,7 +78,7 @@ jobs: ) pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index e1b282b..d84684e 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -8,7 +8,7 @@ jobs: displayName: Pre-build checks pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 steps: - template: ./prebuild-checks.yml @@ -20,7 +20,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['docs.run'], 'true')) pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 steps: - template: ./docs-steps.yml @@ -52,7 +52,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 variables: testRunTitle: '$(system.pullRequest.TargetBranch)-linux' @@ -78,7 +78,7 @@ jobs: ) pool: - vmImage: ubuntu-20.04 + vmImage: ubuntu-22.04 variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' |