Staging
v0.8.1
https://github.com/python/cpython
Revision 62d618c06bd395308b7163dbcb26c7e6d0922033 authored by Christian Heimes on 15 May 2020, 16:48:25 UTC, committed by GitHub on 15 May 2020, 16:48:25 UTC


* 1.0.2u (EOL)
* 1.1.0l (EOL)
* 1.1.1g
* 3.0.0-alpha2 (disabled for now)

Build the FIPS provider and create a FIPS configuration file for OpenSSL
3.0.0.

Signed-off-by: Christian Heimes <christian@python.org>

Automerge-Triggered-By: @tiran
1 parent 16d4e6f
Raw File
Tip revision: 62d618c06bd395308b7163dbcb26c7e6d0922033 authored by Christian Heimes on 15 May 2020, 16:48:25 UTC
bpo-40479: Test with latest OpenSSL versions (GH-20108)
Tip revision: 62d618c
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