Staging
v0.5.1
https://github.com/python/cpython
Revision 4b828467a3fcec0c1947e8326f67b8db12a4f303 authored by Miss Islington (bot) on 28 May 2018, 20:44:12 UTC, committed by GitHub on 28 May 2018, 20:44:12 UTC
(cherry picked from commit 8267ea2e84d355f00654dec3ad782fc7b1f680f1)

Co-authored-by: Yury Selivanov <yury@magic.io>
1 parent 3757939
Raw File
Tip revision: 4b828467a3fcec0c1947e8326f67b8db12a4f303 authored by Miss Islington (bot) on 28 May 2018, 20:44:12 UTC
bpo-32458: Further tune start_tls tests (GH-7166)
Tip revision: 4b82846
macos-pr.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