Staging
v0.8.1
https://github.com/python/cpython
Revision f9195318a863e237f41ed7665c767028cde1c9a3 authored by Julien Jerphanion on 28 November 2020, 07:11:19 UTC, committed by GitHub on 28 November 2020, 07:11:19 UTC
Cache repeated sum and difference to make code slightly faster and easier to read.
1 parent 44ca05a
Raw File
Tip revision: f9195318a863e237f41ed7665c767028cde1c9a3 authored by Julien Jerphanion on 28 November 2020, 07:11:19 UTC
bpo-42452: Improve colorsys.rgb_to_hls code (GH-23306)
Tip revision: f919531
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 -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