Staging
v0.5.1
https://github.com/python/cpython
Revision d071ab12c85636cd15c8ef33647dad9db8441afb authored by Miss Islington (bot) on 07 June 2018, 23:34:12 UTC, committed by GitHub on 07 June 2018, 23:34:12 UTC
(cherry picked from commit bed523ba03c4525c9c79a6df700284b6c43024b3)

Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
1 parent 2795644
Raw File
Tip revision: d071ab12c85636cd15c8ef33647dad9db8441afb authored by Miss Islington (bot) on 07 June 2018, 23:34:12 UTC
bpo-33642 and bpo-33679: Revise and condense blurbs (GH-7500)
Tip revision: d071ab1
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