Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: ca079a3ea30098aff3197c559a0e32d42dda6d84 authored by Benjamin Peterson on 29 April 2018, 22:47:33 UTC
bump to 2.7.15
Tip revision: ca079a3
appveyor.yml
version: 2.7build{build}
clone_depth: 5
branches:
  only:
    - master
    - /\d\.\d/
    - buildbot-custom
cache:
  - externals -> PCbuild\*
before_build:
  - ps: |+
      if ($env:APPVEYOR_RE_BUILD) {
        echo 'Doing full build due to re-build request.'
      } elseif (!$env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT) {
        echo 'Not a PR, doing full build.'
      } else {
        git fetch -q origin +refs/heads/$env:APPVEYOR_REPO_BRANCH
        $mergebase = git merge-base HEAD FETCH_HEAD
        $changes = git diff --name-only HEAD $mergebase | grep -vE '(\.rst$)|(^Doc)|(^Misc)'
        If (!$changes) {
          echo 'Only docs were updated, stopping build process.'
          Exit-AppveyorBuild
        }
        echo 'Doing full build due to non-doc changes in these files:'
        echo $changes
      }


build_script:
  - cmd: PCbuild\build.bat -e
  - cmd: PCbuild\python.exe -m test.pythoninfo
test_script:
  - cmd: PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest -j2
environment:
  HOST_PYTHON: C:\Python36\python.exe
back to top