1pr: ['main', '3.12', '3.11', '3.10', '3.9', '3.8', '3.7'] 2 3jobs: 4- job: Prebuild 5 displayName: Pre-build checks 6 7 pool: 8 vmImage: ubuntu-22.04 9 10 steps: 11 - template: ./prebuild-checks.yml 12 13 14- job: Ubuntu_Patchcheck 15 displayName: Ubuntu patchcheck 16 dependsOn: Prebuild 17 condition: and(succeeded(), eq(dependencies.Prebuild.outputs['tests.run'], 'true')) 18 19 pool: 20 vmImage: ubuntu-22.04 21 22 variables: 23 testRunTitle: '$(system.pullRequest.TargetBranch)-linux' 24 testRunPlatform: linux 25 openssl_version: 1.1.1u 26 27 steps: 28 - template: ./posix-steps.yml 29