Staging
v0.8.1
Revision b2ae5502981ae7e8fc080f5155060235696afe22 authored by Miss Islington (bot) on 25 September 2018, 18:02:06 UTC, committed by GitHub on 25 September 2018, 18:02:06 UTC
(cherry picked from commit 22ef31d0b4b497eda5e356528c3e1d29584d6757)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent 3637e68
Raw File
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'

- 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