1steps: 2- checkout: self 3 clean: true 4 fetchDepth: 5 5 6- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev 7 displayName: 'Configure CPython (debug)' 8 9- script: make -s -j4 10 displayName: 'Build CPython' 11 12- script: make pythoninfo 13 displayName: 'Display build info' 14 15- script: make buildbottest TESTOPTS="-j4 -uall,-cpu --junit-xml=$(build.binariesDirectory)/test-results.xml" 16 displayName: 'Tests' 17 18- task: PublishTestResults@2 19 displayName: 'Publish Test Results' 20 inputs: 21 testResultsFiles: '$(build.binariesDirectory)/test-results.xml' 22 mergeTestResults: true 23 testRunTitle: $(testRunTitle) 24 platform: $(testRunPlatform) 25 condition: succeededOrFailed() 26