Staging
v0.5.1
https://github.com/python/cpython
Revision 09ca5906b7d1619b7efed0bebb6f3c424fe3d83b authored by Miss Islington (bot) on 18 May 2018, 23:27:14 UTC, committed by Ivan Levkivskyi on 18 May 2018, 23:27:14 UTC
(cherry picked from commit f65e31fee3b55dfb6ed5398179d5c5d6b502dee5)

Co-authored-by: Ivan Levkivskyi <levkivskyi@gmail.com>
1 parent abde17e
Raw File
Tip revision: 09ca5906b7d1619b7efed0bebb6f3c424fe3d83b authored by Miss Islington (bot) on 18 May 2018, 23:27:14 UTC
bpo-28556: Don't simplify unions at runtime (GH-6841) (GH-6979)
Tip revision: 09ca590
macos-buildbot.yml
# Current docs for the syntax of this file are at:
#  https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted.md

name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr)

queue:
  name: Hosted macOS Preview

trigger:
  branches:
    include:
    - master
    - 3.7
    - 3.6
  paths:
    exclude:
    - Doc/*
    - Tools/*

#variables:

steps:
- checkout: self
  clean: true
  fetchDepth: 5

- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl
  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"
  displayName: 'Tests'
back to top