Staging
v0.5.1
https://github.com/python/cpython
Revision ac53ba6c7c0c43100bab8bc427d54563d9b65a0e authored by Ned Deily on 14 October 2019, 08:36:34 UTC, committed by GitHub on 14 October 2019, 08:36:34 UTC
1 parent 3ac1529
Raw File
Tip revision: ac53ba6c7c0c43100bab8bc427d54563d9b65a0e authored by Ned Deily on 14 October 2019, 08:36:34 UTC
[3.8] Update macOS installer display files for 3.8.0 (GH-16766)
Tip revision: ac53ba6
macos-steps.yml
steps:
- checkout: self
  clean: true
  fetchDepth: 5

- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl --prefix=/opt/python-azdev
  displayName: 'Configure CPython (debug)'

- script: make -s -j4
  displayName: 'Build CPython'

- script: make pythoninfo
  displayName: 'Display build info'

- script: make buildbottest TESTOPTS="-j4 -uall,-cpu --junit-xml=$(build.binariesDirectory)/test-results.xml"
  displayName: 'Tests'
  continueOnError: true
  timeoutInMinutes: 30

- task: PublishTestResults@2
  displayName: 'Publish Test Results'
  inputs:
    testResultsFiles: '$(build.binariesDirectory)/test-results.xml'
    mergeTestResults: true
    testRunTitle: $(testRunTitle)
    platform: $(testRunPlatform)
  condition: succeededOrFailed()
back to top