forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into os-walk-dirs-editing
- Loading branch information
Showing
3,082 changed files
with
357,654 additions
and
249,659 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,123 +1,28 @@ | ||
variables: | ||
coverage: false | ||
|
||
pr: ['main', '3.11', '3.10', '3.9', '3.8', '3.7'] | ||
pr: ['main', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7'] | ||
|
||
jobs: | ||
- job: Prebuild | ||
displayName: Pre-build checks | ||
|
||
pool: | ||
vmImage: ubuntu-20.04 | ||
vmImage: ubuntu-22.04 | ||
|
||
steps: | ||
- template: ./prebuild-checks.yml | ||
|
||
|
||
- job: Docs_PR | ||
displayName: Docs PR | ||
dependsOn: Prebuild | ||
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['docs.run'], 'true')) | ||
|
||
pool: | ||
vmImage: ubuntu-20.04 | ||
|
||
steps: | ||
- template: ./docs-steps.yml | ||
|
||
|
||
- job: macOS_PR_Tests | ||
displayName: macOS PR Tests | ||
dependsOn: Prebuild | ||
#condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) | ||
# bpo-39837: macOS tests on Azure Pipelines are disabled | ||
condition: false | ||
|
||
variables: | ||
testRunTitle: '$(system.pullRequest.TargetBranch)-macos' | ||
testRunPlatform: macos | ||
|
||
pool: | ||
vmImage: macos-10.15 | ||
|
||
steps: | ||
- template: ./macos-steps.yml | ||
parameters: | ||
targetBranch: $(System.PullRequest.TargetBranch) | ||
|
||
|
||
- job: Ubuntu_PR_Tests | ||
displayName: Ubuntu PR Tests | ||
- job: Ubuntu_Patchcheck | ||
displayName: Ubuntu patchcheck | ||
dependsOn: Prebuild | ||
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' | ||
testRunPlatform: linux | ||
openssl_version: 1.1.1q | ||
|
||
steps: | ||
- template: ./posix-steps.yml | ||
parameters: | ||
dependencies: apt | ||
|
||
|
||
- job: Ubuntu_Coverage_PR_Tests | ||
displayName: Ubuntu PR Tests (coverage) | ||
dependsOn: Prebuild | ||
condition: | | ||
and( | ||
and( | ||
succeeded(), | ||
eq(variables['coverage'], 'true') | ||
), | ||
eq(dependencies.Prebuild.outputs['tests.run'], 'true') | ||
) | ||
pool: | ||
vmImage: ubuntu-20.04 | ||
|
||
variables: | ||
testRunTitle: '$(Build.SourceBranchName)-linux-coverage' | ||
testRunPlatform: linux-coverage | ||
openssl_version: 1.1.1q | ||
openssl_version: 1.1.1u | ||
|
||
steps: | ||
- template: ./posix-steps.yml | ||
parameters: | ||
dependencies: apt | ||
coverage: true | ||
|
||
|
||
- job: Windows_PR_Tests | ||
displayName: Windows PR Tests | ||
dependsOn: Prebuild | ||
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) | ||
|
||
pool: | ||
vmImage: windows-2022 | ||
|
||
strategy: | ||
matrix: | ||
win32: | ||
arch: win32 | ||
buildOpt: '-p Win32' | ||
testRunTitle: '$(System.PullRequest.TargetBranch)-win32' | ||
testRunPlatform: win32 | ||
win64: | ||
arch: amd64 | ||
buildOpt: '-p x64' | ||
testRunTitle: '$(System.PullRequest.TargetBranch)-win64' | ||
testRunPlatform: win64 | ||
winarm64: | ||
arch: arm64 | ||
buildOpt: '-p arm64' | ||
maxParallel: 4 | ||
|
||
steps: | ||
- template: ./windows-steps.yml | ||
parameters: | ||
targetBranch: $(System.PullRequest.TargetBranch) |
Oops, something went wrong.