Staging
v0.5.1
https://github.com/python/cpython
Revision cc061d0e6fb2569efa91531686f75b89e94ec865 authored by Raymond Hettinger on 01 December 2020, 04:42:54 UTC, committed by GitHub on 01 December 2020, 04:42:54 UTC
1 parent 427613f
Raw File
Tip revision: cc061d0e6fb2569efa91531686f75b89e94ec865 authored by Raymond Hettinger on 01 December 2020, 04:42:54 UTC
bpo-38200: Add itertools.pairwise() (GH-23549)
Tip revision: cc061d0
stage-test-embed.yml
jobs:
- job: Test_Embed
  displayName: Test Embed
  condition: and(succeeded(), eq(variables['DoEmbed'], 'true'))

  pool:
    vmImage: windows-2019

  workspace:
    clean: all

  strategy:
    matrix:
      win32:
        Name: win32
      amd64:
        Name: amd64

  steps:
  - checkout: none

  - task: DownloadBuildArtifacts@0
    displayName: 'Download artifact: embed'
    inputs:
      artifactName: embed
      downloadPath: $(Build.BinariesDirectory)

  - powershell: |
      $p = gi "$(Build.BinariesDirectory)\embed\python*embed-$(Name).zip"
      Expand-Archive -Path $p -DestinationPath "$(Build.BinariesDirectory)\Python"
      $p = gi "$(Build.BinariesDirectory)\Python\python.exe"
      Write-Host "##vso[task.prependpath]$(Split-Path -Parent $p)"
    displayName: 'Install Python and add to PATH'

  - script: |
      python -c "import sys; print(sys.version)"
    displayName: 'Collect version number'

  - script: |
      python -m site
    displayName: 'Collect site'
back to top