From: Hugo van Kemenade Date: Sat, 21 Jan 2023 23:49:15 +0000 (+0200) Subject: [3.7] Bump Azure Pipelines to ubuntu-20.04 (GH-101089). (GH-101226) X-Git-Tag: v3.7.17~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c338916f1420fe5f7074690605aad900f306841;p=thirdparty%2FPython%2Fcpython.git [3.7] Bump Azure Pipelines to ubuntu-20.04 (GH-101089). (GH-101226) Co-authored-by: Hugo van Kemenade --- diff --git a/.azure-pipelines/ci.yml b/.azure-pipelines/ci.yml index eaaa88c9634f..3a12fe4bfa43 100644 --- a/.azure-pipelines/ci.yml +++ b/.azure-pipelines/ci.yml @@ -12,7 +12,7 @@ jobs: displayName: Pre-build checks pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 steps: - template: ./prebuild-checks.yml @@ -24,7 +24,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['docs.run'], 'true')) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 steps: - template: ./docs-steps.yml @@ -56,7 +56,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 variables: testRunTitle: '$(build.sourceBranchName)-linux' @@ -82,7 +82,7 @@ jobs: ) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 container: manylinux1 @@ -113,7 +113,7 @@ jobs: ) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage' diff --git a/.azure-pipelines/pr.yml b/.azure-pipelines/pr.yml index 7f01f8b25c2c..91607b931a36 100644 --- a/.azure-pipelines/pr.yml +++ b/.azure-pipelines/pr.yml @@ -12,7 +12,7 @@ jobs: displayName: Pre-build checks pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 steps: - template: ./prebuild-checks.yml @@ -24,7 +24,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['docs.run'], 'true')) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 steps: - template: ./docs-steps.yml @@ -56,7 +56,7 @@ jobs: condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 variables: testRunTitle: '$(system.pullRequest.TargetBranch)-linux' @@ -82,7 +82,7 @@ jobs: ) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 container: manylinux1 @@ -113,7 +113,7 @@ jobs: ) pool: - vmImage: ubuntu-16.04 + vmImage: ubuntu-20.04 variables: testRunTitle: '$(Build.SourceBranchName)-linux-coverage'