Staging
v0.8.1
Revision a986b061a3cd4661eb9f857e2936291f1847bd15 authored by Miss Islington (bot) on 03 September 2020, 19:38:34 UTC, committed by GitHub on 03 September 2020, 19:38:34 UTC
Stopping and restarting a proactor event loop on windows can lead to
spurious errors logged (ConnectionResetError while reading from the
self pipe). This fixes the issue by ensuring that we don't attempt
to start multiple copies of the self-pipe reading loop.
(cherry picked from commit ea5a6363c3f8cc90b7c0cc573922b10f296073b6)

Co-authored-by: Ben Darnell <ben@bendarnell.com>

Co-authored-by: Ben Darnell <ben@bendarnell.com>
1 parent 9fef7c5
Raw File
stage-msi.yml
jobs:
- job: Make_MSI
  displayName: Make MSI
  condition: and(succeeded(), not(variables['SigningCertificate']))

  pool:
    vmImage: windows-2019

  variables:
    ReleaseUri: http://www.python.org/{arch}
    DownloadUrl: https://www.python.org/ftp/python/{version}/{arch}{releasename}/{msi}
    Py_OutDir: $(Build.BinariesDirectory)

  workspace:
    clean: all

  steps:
  - template: msi-steps.yml

- job: Make_Signed_MSI
  displayName: Make signed MSI
  condition: and(succeeded(), variables['SigningCertificate'])

  pool:
    name: 'Windows Release'

  variables:
    ReleaseUri: http://www.python.org/{arch}
    DownloadUrl: https://www.python.org/ftp/python/{version}/{arch}{releasename}/{msi}
    Py_OutDir: $(Build.BinariesDirectory)

  workspace:
    clean: all

  steps:
  - template: msi-steps.yml
back to top