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.
- Loading branch information
1 parent
db11e86
commit 9ae9ad8
Showing
3,877 changed files
with
2,137,796 additions
and
2,137,796 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,129 @@ | ||
variables: | ||
coverage: false | ||
|
||
trigger: ['master', '3.9', '3.8', '3.7'] | ||
|
||
jobs: | ||
- job: Prebuild | ||
displayName: Pre-build checks | ||
|
||
pool: | ||
vmImage: ubuntu-18.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-18.04 | ||
|
||
steps: | ||
- template: ./docs-steps.yml | ||
parameters: | ||
upload: true | ||
|
||
|
||
- job: macOS_CI_Tests | ||
displayName: macOS CI 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: '$(build.sourceBranchName)-macos' | ||
testRunPlatform: macos | ||
|
||
pool: | ||
vmImage: macos-10.14 | ||
|
||
steps: | ||
- template: ./macos-steps.yml | ||
|
||
|
||
- job: Ubuntu_CI_Tests | ||
displayName: Ubuntu CI Tests | ||
dependsOn: Prebuild | ||
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) | ||
|
||
pool: | ||
vmImage: ubuntu-18.04 | ||
|
||
variables: | ||
testRunTitle: '$(build.sourceBranchName)-linux' | ||
testRunPlatform: linux | ||
openssl_version: 1.1.1g | ||
|
||
steps: | ||
- template: ./posix-steps.yml | ||
parameters: | ||
dependencies: apt | ||
|
||
|
||
- job: Ubuntu_Coverage_CI_Tests | ||
displayName: Ubuntu CI Tests (coverage) | ||
dependsOn: Prebuild | ||
condition: | | ||
and( | ||
and( | ||
succeeded(), | ||
eq(variables['coverage'], 'true') | ||
), | ||
eq(dependencies.Prebuild.outputs['tests.run'], 'true') | ||
) | ||
pool: | ||
vmImage: ubuntu-18.04 | ||
|
||
variables: | ||
testRunTitle: '$(Build.SourceBranchName)-linux-coverage' | ||
testRunPlatform: linux-coverage | ||
openssl_version: 1.1.1g | ||
|
||
steps: | ||
- template: ./posix-steps.yml | ||
parameters: | ||
dependencies: apt | ||
coverage: true | ||
|
||
|
||
- job: Windows_CI_Tests | ||
displayName: Windows CI Tests | ||
dependsOn: Prebuild | ||
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) | ||
|
||
pool: | ||
vmImage: windows-2019 | ||
|
||
strategy: | ||
matrix: | ||
win32: | ||
arch: win32 | ||
buildOpt: | ||
testRunTitle: '$(Build.SourceBranchName)-win32' | ||
testRunPlatform: win32 | ||
win64: | ||
arch: amd64 | ||
buildOpt: '-p x64' | ||
testRunTitle: '$(Build.SourceBranchName)-win64' | ||
testRunPlatform: win64 | ||
maxParallel: 4 | ||
|
||
steps: | ||
- template: ./windows-steps.yml | ||
|
||
- template: ./windows-layout-steps.yml | ||
parameters: | ||
kind: nuget | ||
- template: ./windows-layout-steps.yml | ||
parameters: | ||
kind: embed | ||
- template: ./windows-layout-steps.yml | ||
parameters: | ||
kind: appx | ||
fulltest: true | ||
variables: | ||
coverage: false | ||
|
||
trigger: ['master', '3.9', '3.8', '3.7'] | ||
|
||
jobs: | ||
- job: Prebuild | ||
displayName: Pre-build checks | ||
|
||
pool: | ||
vmImage: ubuntu-18.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-18.04 | ||
|
||
steps: | ||
- template: ./docs-steps.yml | ||
parameters: | ||
upload: true | ||
|
||
|
||
- job: macOS_CI_Tests | ||
displayName: macOS CI 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: '$(build.sourceBranchName)-macos' | ||
testRunPlatform: macos | ||
|
||
pool: | ||
vmImage: macos-10.14 | ||
|
||
steps: | ||
- template: ./macos-steps.yml | ||
|
||
|
||
- job: Ubuntu_CI_Tests | ||
displayName: Ubuntu CI Tests | ||
dependsOn: Prebuild | ||
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) | ||
|
||
pool: | ||
vmImage: ubuntu-18.04 | ||
|
||
variables: | ||
testRunTitle: '$(build.sourceBranchName)-linux' | ||
testRunPlatform: linux | ||
openssl_version: 1.1.1g | ||
|
||
steps: | ||
- template: ./posix-steps.yml | ||
parameters: | ||
dependencies: apt | ||
|
||
|
||
- job: Ubuntu_Coverage_CI_Tests | ||
displayName: Ubuntu CI Tests (coverage) | ||
dependsOn: Prebuild | ||
condition: | | ||
and( | ||
and( | ||
succeeded(), | ||
eq(variables['coverage'], 'true') | ||
), | ||
eq(dependencies.Prebuild.outputs['tests.run'], 'true') | ||
) | ||
pool: | ||
vmImage: ubuntu-18.04 | ||
|
||
variables: | ||
testRunTitle: '$(Build.SourceBranchName)-linux-coverage' | ||
testRunPlatform: linux-coverage | ||
openssl_version: 1.1.1g | ||
|
||
steps: | ||
- template: ./posix-steps.yml | ||
parameters: | ||
dependencies: apt | ||
coverage: true | ||
|
||
|
||
- job: Windows_CI_Tests | ||
displayName: Windows CI Tests | ||
dependsOn: Prebuild | ||
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) | ||
|
||
pool: | ||
vmImage: windows-2019 | ||
|
||
strategy: | ||
matrix: | ||
win32: | ||
arch: win32 | ||
buildOpt: | ||
testRunTitle: '$(Build.SourceBranchName)-win32' | ||
testRunPlatform: win32 | ||
win64: | ||
arch: amd64 | ||
buildOpt: '-p x64' | ||
testRunTitle: '$(Build.SourceBranchName)-win64' | ||
testRunPlatform: win64 | ||
maxParallel: 4 | ||
|
||
steps: | ||
- template: ./windows-steps.yml | ||
|
||
- template: ./windows-layout-steps.yml | ||
parameters: | ||
kind: nuget | ||
- template: ./windows-layout-steps.yml | ||
parameters: | ||
kind: embed | ||
- template: ./windows-layout-steps.yml | ||
parameters: | ||
kind: appx | ||
fulltest: true |
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,46 +1,46 @@ | ||
parameters: | ||
latex: false | ||
upload: false | ||
|
||
steps: | ||
- checkout: self | ||
clean: true | ||
fetchDepth: 5 | ||
|
||
- task: UsePythonVersion@0 | ||
displayName: 'Use Python 3.6 or later' | ||
inputs: | ||
versionSpec: '>=3.6' | ||
|
||
- script: python -m pip install sphinx==2.2.0 blurb python-docs-theme | ||
displayName: 'Install build dependencies' | ||
|
||
- ${{ if ne(parameters.latex, 'true') }}: | ||
- script: make check suspicious html PYTHON=python | ||
workingDirectory: '$(build.sourcesDirectory)/Doc' | ||
displayName: 'Build documentation' | ||
|
||
- ${{ if eq(parameters.latex, 'true') }}: | ||
- script: sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full | ||
displayName: 'Install LaTeX' | ||
|
||
- script: make dist PYTHON=python SPHINXBUILD='python -m sphinx' BLURB='python -m blurb' | ||
workingDirectory: '$(build.sourcesDirectory)/Doc' | ||
displayName: 'Build documentation' | ||
|
||
- ${{ if eq(parameters.upload, 'true') }}: | ||
- task: PublishBuildArtifacts@1 | ||
displayName: 'Publish docs' | ||
|
||
inputs: | ||
PathToPublish: '$(build.sourcesDirectory)/Doc/build' | ||
ArtifactName: docs | ||
publishLocation: Container | ||
|
||
- ${{ if eq(parameters.latex, 'true') }}: | ||
- task: PublishBuildArtifacts@1 | ||
displayName: 'Publish dist' | ||
inputs: | ||
PathToPublish: '$(build.sourcesDirectory)/Doc/dist' | ||
ArtifactName: docs_dist | ||
publishLocation: Container | ||
parameters: | ||
latex: false | ||
upload: false | ||
|
||
steps: | ||
- checkout: self | ||
clean: true | ||
fetchDepth: 5 | ||
|
||
- task: UsePythonVersion@0 | ||
displayName: 'Use Python 3.6 or later' | ||
inputs: | ||
versionSpec: '>=3.6' | ||
|
||
- script: python -m pip install sphinx==2.2.0 blurb python-docs-theme | ||
displayName: 'Install build dependencies' | ||
|
||
- ${{ if ne(parameters.latex, 'true') }}: | ||
- script: make check suspicious html PYTHON=python | ||
workingDirectory: '$(build.sourcesDirectory)/Doc' | ||
displayName: 'Build documentation' | ||
|
||
- ${{ if eq(parameters.latex, 'true') }}: | ||
- script: sudo apt-get update && sudo apt-get install -qy --force-yes texlive-full | ||
displayName: 'Install LaTeX' | ||
|
||
- script: make dist PYTHON=python SPHINXBUILD='python -m sphinx' BLURB='python -m blurb' | ||
workingDirectory: '$(build.sourcesDirectory)/Doc' | ||
displayName: 'Build documentation' | ||
|
||
- ${{ if eq(parameters.upload, 'true') }}: | ||
- task: PublishBuildArtifacts@1 | ||
displayName: 'Publish docs' | ||
|
||
inputs: | ||
PathToPublish: '$(build.sourcesDirectory)/Doc/build' | ||
ArtifactName: docs | ||
publishLocation: Container | ||
|
||
- ${{ if eq(parameters.latex, 'true') }}: | ||
- task: PublishBuildArtifacts@1 | ||
displayName: 'Publish dist' | ||
inputs: | ||
PathToPublish: '$(build.sourcesDirectory)/Doc/dist' | ||
ArtifactName: docs_dist | ||
publishLocation: Container |
Oops, something went wrong.