2019-01-22 19:49:52 +01:00
|
|
|
variables:
|
|
|
|
coverage: false
|
|
|
|
|
2021-08-29 17:07:45 +02:00
|
|
|
pr: ['main', '3.10', '3.9', '3.8', '3.7']
|
2019-01-22 19:49:52 +01:00
|
|
|
|
2018-09-24 13:44:50 +02:00
|
|
|
jobs:
|
|
|
|
- job: Prebuild
|
|
|
|
displayName: Pre-build checks
|
|
|
|
|
|
|
|
pool:
|
2023-01-21 20:38:52 +01:00
|
|
|
vmImage: ubuntu-22.04
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./prebuild-checks.yml
|
|
|
|
|
|
|
|
|
|
|
|
- job: Docs_PR
|
|
|
|
displayName: Docs PR
|
|
|
|
dependsOn: Prebuild
|
|
|
|
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['docs.run'], 'true'))
|
|
|
|
|
|
|
|
pool:
|
2023-01-21 20:38:52 +01:00
|
|
|
vmImage: ubuntu-22.04
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./docs-steps.yml
|
|
|
|
|
|
|
|
|
|
|
|
- job: macOS_PR_Tests
|
|
|
|
displayName: macOS PR Tests
|
|
|
|
dependsOn: Prebuild
|
2020-03-07 01:11:47 +01:00
|
|
|
#condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
|
|
|
|
# bpo-39837: macOS tests on Azure Pipelines are disabled
|
|
|
|
condition: false
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
variables:
|
|
|
|
testRunTitle: '$(system.pullRequest.TargetBranch)-macos'
|
|
|
|
testRunPlatform: macos
|
|
|
|
|
|
|
|
pool:
|
2021-08-29 17:07:45 +02:00
|
|
|
vmImage: macos-10.15
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./macos-steps.yml
|
|
|
|
parameters:
|
|
|
|
targetBranch: $(System.PullRequest.TargetBranch)
|
|
|
|
|
|
|
|
|
|
|
|
- job: Ubuntu_PR_Tests
|
|
|
|
displayName: Ubuntu PR Tests
|
|
|
|
dependsOn: Prebuild
|
|
|
|
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
|
|
|
|
|
|
|
|
pool:
|
2023-01-21 20:38:52 +01:00
|
|
|
vmImage: ubuntu-22.04
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
variables:
|
|
|
|
testRunTitle: '$(system.pullRequest.TargetBranch)-linux'
|
|
|
|
testRunPlatform: linux
|
2023-06-05 17:41:51 +02:00
|
|
|
openssl_version: 1.1.1u
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./posix-steps.yml
|
|
|
|
parameters:
|
2019-01-22 19:49:52 +01:00
|
|
|
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:
|
2023-01-21 20:38:52 +01:00
|
|
|
vmImage: ubuntu-22.04
|
2019-01-22 19:49:52 +01:00
|
|
|
|
|
|
|
variables:
|
|
|
|
testRunTitle: '$(Build.SourceBranchName)-linux-coverage'
|
|
|
|
testRunPlatform: linux-coverage
|
2023-06-05 17:41:51 +02:00
|
|
|
openssl_version: 1.1.1u
|
2019-01-22 19:49:52 +01:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./posix-steps.yml
|
|
|
|
parameters:
|
|
|
|
dependencies: apt
|
|
|
|
coverage: true
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
- job: Windows_PR_Tests
|
|
|
|
displayName: Windows PR Tests
|
|
|
|
dependsOn: Prebuild
|
|
|
|
condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true'))
|
|
|
|
|
|
|
|
pool:
|
2019-09-10 17:53:03 +02:00
|
|
|
vmImage: windows-2019
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
win32:
|
|
|
|
arch: win32
|
2020-11-18 18:45:54 +01:00
|
|
|
buildOpt: '-p Win32'
|
2018-09-24 13:44:50 +02:00
|
|
|
testRunTitle: '$(System.PullRequest.TargetBranch)-win32'
|
|
|
|
testRunPlatform: win32
|
|
|
|
win64:
|
|
|
|
arch: amd64
|
|
|
|
buildOpt: '-p x64'
|
|
|
|
testRunTitle: '$(System.PullRequest.TargetBranch)-win64'
|
|
|
|
testRunPlatform: win64
|
2019-11-20 18:30:47 +01:00
|
|
|
winarm64:
|
|
|
|
arch: arm64
|
|
|
|
buildOpt: '-p arm64'
|
|
|
|
maxParallel: 4
|
2018-09-24 13:44:50 +02:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- template: ./windows-steps.yml
|
|
|
|
parameters:
|
|
|
|
targetBranch: $(System.PullRequest.TargetBranch)
|