Staging
v0.8.1
https://github.com/python/cpython
Revision bd844b0336376408d7cc3b7fd6830479cd9b3a91 authored by Miss Islington (bot) on 14 September 2018, 16:27:48 UTC, committed by Benjamin Peterson on 14 September 2018, 16:27:48 UTC
(cherry picked from commit 83df50ea5757816c7338d27f21fd18b1e79206f7)

Co-authored-by: 觉 <Xdminsy@users.noreply.github.com>
1 parent f79d74d
Raw File
Tip revision: bd844b0336376408d7cc3b7fd6830479cd9b3a91 authored by Miss Islington (bot) on 14 September 2018, 16:27:48 UTC
Change the xkcd link in comment over https. (GH-9294)
Tip revision: bd844b0
linux-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 Ubuntu 1604'

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

#variables:


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

- script: ./.vsts/install_deps.sh
  displayName: 'Install dependencies'

- script: ./configure --with-pydebug
  displayName: 'Configure CPython (debug)'

- script: make -s -j4
  displayName: 'Build CPython'

- script: make pythoninfo
  displayName: 'Display build info'

- script: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu"
  displayName: 'Tests'
back to top