blob: 647081689454acc3e64822b28cb04773303c0b55 [file] [log] [blame]
Steve Dower57675092018-09-24 07:44:50 -04001steps:
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()