• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1language: c
2dist: trusty
3sudo: false
4group: beta
5
6# To cache doc-building dependencies.
7cache: pip
8
9branches:
10  only:
11    - master
12    - /^\d\.\d$/
13
14os:
15  - linux
16  # macOS builds are disabled as the machines are under-provisioned on Travis,
17  # adding up to an extra hour completing a full CI run.
18  #- osx
19
20compiler:
21  - clang
22  - gcc
23
24env:
25  - TESTING=cpython
26
27matrix:
28  fast_finish: true
29  allow_failures:
30    - env:
31       - TESTING=coverage
32  include:
33    - os: linux
34      language: python
35      python: 3.5
36      env:
37        - TESTING=docs
38      before_script:
39        - cd Doc
40        - make venv
41      script:
42        - make check suspicious html PYTHON="./venv/bin/python" SPHINXBUILD="./venv/bin/python -m sphinx" SPHINXOPTS="-q"
43    - os: linux
44      language: c
45      compiler: clang
46      env:
47        - TESTING=coverage
48      before_script:
49        - |
50            if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.(rst|yml)$)|(^Doc)/'
51            then
52              echo "Only docs were updated, stopping build process."
53              exit
54            fi
55            ./configure
56            make -s -j4
57            # Need a venv that can parse covered code.
58            ./python -m venv venv
59            ./venv/bin/python -m pip install -U coverage
60      script:
61        # Skip tests that re-run the entire test suite.
62        - ./venv/bin/python -m coverage run --pylib -m test -uall -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn
63      after_script:  # Probably should be after_success once test suite updated to run under coverage.py.
64        # Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
65        - source ./venv/bin/activate
66        - bash <(curl -s https://codecov.io/bash)
67    - os: linux
68      language: cpp
69      compiler: clang
70      env:
71        - TESTING="C++ header compatibility"
72      before_script:
73        - ./configure
74      script:
75        - echo '#include "Python.h"' > test.cc && $CXX -c test.cc -o /dev/null -I ./Include -I .
76
77# Travis provides only 2 cores, so don't overdue the parallelism and waste memory.
78before_script:
79  - |
80      if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.(rst|yml)$)|(^Doc)/'
81      then
82        echo "Only docs were updated, stopping build process."
83        exit
84      fi
85      ./configure --with-pydebug
86      make -j4
87
88script:
89  # `-r -w` implicitly provided through `make buildbottest`.
90  - make buildbottest TESTOPTS="-j4"
91
92notifications:
93  email: false
94  irc:
95    channels:
96      # This is set to a secure variable to prevent forks from notifying the
97      # IRC channel whenever they fail a build. This can be removed when travis
98      # implements https://github.com/travis-ci/travis-ci/issues/1094.
99      # The actual value here is: irc.freenode.net#python-dev
100      - secure: "s7kAkpcom2yUJ8XqyjFI0obJmhAGrn1xmoivdaPdgBIA++X47TBp1x4pgDsbEsoalef7bEwa4l07KdT4qa+DOd/c4QxaWom7fbN3BuLVsZuVfODnl79+gYq/TAbGfyH+yDs18DXrUfPgwD7C5aW32ugsqAOd4iWzfGJQ5OrOZzqzGjYdYQUEkJFXgxDEIb4aHvxNDWGO3Po9uKISrhb5saQ0l776yLo1Ur7M4oxl8RTbCdgX0vf5TzPg52BgvZpOgt3DHOUYPeiJLKNjAE6ibg0U95sEvMfHX77nz4aFY4/3UI6FFaRla34rZ+mYKrn0TdxOhera1QOgPmM6HzdO4K44FpfK1DS0Xxk9U9/uApq+cG0bU3W+cVUHDBe5+90lpRBAXHeHCgT7TI8gec614aiT8lEr3+yH8OBRYGzkjNK8E2LJZ/SxnVxDe7aLF6AWcoWLfS6/ziAIBFQ5Nc4U72CT8fGVSkl8ywPiRlvixKdvTODMSZo0jMqlfZSNaAPTsNRx4wu5Uis4qekwe32Fz4aB6KGpsuuVjBi+H6v0RKxNJNGY3JKDiEH2TK0UE2auJ5GvLW48aUVFcQMB7euCWYXlSWVRHh3WLU8QXF29Dw4JduRZqUpOdRgMHU79UHRq+mkE0jAS/nBcS6CvsmxCpTSrfVYuMOu32yt18QQoTyU="
101    on_success: change
102    on_failure: always
103    skip_join: true
104