blob: 4c431241680c2687a6a25bdda5103852c8b64750 [file] [log] [blame]
Brett Cannonbb09c862017-02-10 14:21:15 -08001language: c
2dist: trusty
3sudo: false
4group: beta
5
6# To cache doc-building dependencies.
7cache: pip
8
Donald Stufft984eef72017-02-14 20:21:32 -05009branches:
10 only:
11 - master
12 - /^\d\.\d$/
13
Brett Cannonbb09c862017-02-10 14:21:15 -080014matrix:
Brett Cannonb52260d2017-02-14 16:37:15 -080015 fast_finish: true
Brett Cannonbb09c862017-02-10 14:21:15 -080016 allow_failures:
Brett Cannon21c2dd72017-06-03 10:24:17 -070017 - env: OPTIONAL=true
Brett Cannonbb09c862017-02-10 14:21:15 -080018 include:
19 - os: linux
Hiro Asaria5aa72a2017-05-31 18:34:00 -040020 language: c
21 compiler: clang
22 # gcc also works, but to keep the # of concurrent builds down, we use one C
Brett Cannon21c2dd72017-06-03 10:24:17 -070023 # compiler here and the other to run the coverage build. Clang is preferred
24 # in this instance for its better error messages.
25 env: TESTING=cpython
26 - os: osx
27 language: c
28 compiler: clang
29 # Testing under macOS is optional until testing stability has been demonstrated.
30 env: OPTIONAL=true
Zachary Ware167e0fc2017-06-05 19:11:29 -050031 before_install:
32 - brew install openssl xz
33 - export CPPFLAGS="-I$(brew --prefix openssl)/include"
34 - export LDFLAGS="-L$(brew --prefix openssl)/lib"
Hiro Asaria5aa72a2017-05-31 18:34:00 -040035 - os: linux
Brett Cannonbb09c862017-02-10 14:21:15 -080036 language: python
Brett Cannon31b39012017-05-11 10:45:34 -070037 # Build the docs against a stable version of Python so code bugs don't hold up doc-related PRs.
Brett Cannonad2f9e22017-03-27 16:39:54 -070038 python: 3.6
Brett Cannon21c2dd72017-06-03 10:24:17 -070039 env: TESTING=docs
Brett Cannonbb09c862017-02-10 14:21:15 -080040 before_script:
Zachary Ware53251972017-02-15 16:18:03 -060041 - cd Doc
Mariattafca224f2017-05-16 13:48:25 -070042 # Sphinx is pinned so that new versions that introduce new warnings won't suddenly cause build failures.
43 # (Updating the version is fine as long as no warnings are raised by doing so.)
44 - python -m pip install sphinx~=1.6.1
Brett Cannonbb09c862017-02-10 14:21:15 -080045 script:
Antoine Pitroueba68e22017-05-29 12:05:45 +020046 - make check suspicious html SPHINXOPTS="-q -W -j4"
Brett Cannonbb09c862017-02-10 14:21:15 -080047 - os: linux
48 language: c
Brett Cannonad2f9e22017-03-27 16:39:54 -070049 compiler: gcc
Brett Cannon21c2dd72017-06-03 10:24:17 -070050 env: OPTIONAL=true
Brett Cannonbb09c862017-02-10 14:21:15 -080051 before_script:
Berker Peksag157c0b82017-02-14 12:57:26 +030052 - |
Zachary Warec53b13b2017-06-05 18:42:17 -050053 if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
Berker Peksag157c0b82017-02-14 12:57:26 +030054 then
55 echo "Only docs were updated, stopping build process."
56 exit
57 fi
58 ./configure
59 make -s -j4
60 # Need a venv that can parse covered code.
61 ./python -m venv venv
62 ./venv/bin/python -m pip install -U coverage
Victor Stinnerb907abc2017-08-17 16:40:51 +020063 ./venv/bin/python -m test.pythoninfo
Brett Cannonbb09c862017-02-10 14:21:15 -080064 script:
65 # Skip tests that re-run the entire test suite.
Victor Stinner5b392bb2017-07-20 15:46:32 +020066 - ./venv/bin/python -m coverage run --pylib -m test -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn
Brett Cannonbb09c862017-02-10 14:21:15 -080067 after_script: # Probably should be after_success once test suite updated to run under coverage.py.
68 # Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
69 - source ./venv/bin/activate
70 - bash <(curl -s https://codecov.io/bash)
Brett Cannonbb09c862017-02-10 14:21:15 -080071
Zachary Warec53b13b2017-06-05 18:42:17 -050072# Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
Brett Cannonbb09c862017-02-10 14:21:15 -080073before_script:
Berker Peksag157c0b82017-02-14 12:57:26 +030074 - |
Zachary Ware0afbabe2017-06-10 21:37:40 -050075 set -e
Zachary Warec53b13b2017-06-05 18:42:17 -050076 if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
Berker Peksag157c0b82017-02-14 12:57:26 +030077 then
78 echo "Only docs were updated, stopping build process."
79 exit
80 fi
81 ./configure --with-pydebug
82 make -j4
Zachary Ware0afbabe2017-06-10 21:37:40 -050083 make -j4 regen-all clinic
Zachary Ware3f8f16d2017-06-10 23:04:36 -050084 changes=`git status --porcelain`
85 if ! test -z "$changes"
Zachary Ware0afbabe2017-06-10 21:37:40 -050086 then
87 echo "Generated files not up to date"
Zachary Ware3f8f16d2017-06-10 23:04:36 -050088 echo "$changes"
Zachary Ware0afbabe2017-06-10 21:37:40 -050089 exit 1
90 fi
Victor Stinnerb907abc2017-08-17 16:40:51 +020091 ./python -m test.pythoninfo
Brett Cannonbb09c862017-02-10 14:21:15 -080092
93script:
Brett Cannon70cb1872017-06-24 16:51:23 -070094 # Using the built Python as patchcheck.py is built around the idea of using
95 # a checkout-build of CPython to know things like what base branch the changes
96 # should be compared against.
97 # Only run on Linux as the check only needs to be run once.
98 - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./python Tools/scripts/patchcheck.py --travis $TRAVIS_PULL_REQUEST; fi
Brett Cannonbb09c862017-02-10 14:21:15 -080099 # `-r -w` implicitly provided through `make buildbottest`.
Victor Stinner5b392bb2017-07-20 15:46:32 +0200100 - make buildbottest TESTOPTS="-j4 -uall,-cpu"
Brett Cannonbb09c862017-02-10 14:21:15 -0800101
102notifications:
103 email: false
104 irc:
105 channels:
Donald Stufft4538ddc2017-02-10 19:58:34 -0500106 # This is set to a secure variable to prevent forks from notifying the
107 # IRC channel whenever they fail a build. This can be removed when travis
108 # implements https://github.com/travis-ci/travis-ci/issues/1094.
109 # The actual value here is: irc.freenode.net#python-dev
110 - secure: "s7kAkpcom2yUJ8XqyjFI0obJmhAGrn1xmoivdaPdgBIA++X47TBp1x4pgDsbEsoalef7bEwa4l07KdT4qa+DOd/c4QxaWom7fbN3BuLVsZuVfODnl79+gYq/TAbGfyH+yDs18DXrUfPgwD7C5aW32ugsqAOd4iWzfGJQ5OrOZzqzGjYdYQUEkJFXgxDEIb4aHvxNDWGO3Po9uKISrhb5saQ0l776yLo1Ur7M4oxl8RTbCdgX0vf5TzPg52BgvZpOgt3DHOUYPeiJLKNjAE6ibg0U95sEvMfHX77nz4aFY4/3UI6FFaRla34rZ+mYKrn0TdxOhera1QOgPmM6HzdO4K44FpfK1DS0Xxk9U9/uApq+cG0bU3W+cVUHDBe5+90lpRBAXHeHCgT7TI8gec614aiT8lEr3+yH8OBRYGzkjNK8E2LJZ/SxnVxDe7aLF6AWcoWLfS6/ziAIBFQ5Nc4U72CT8fGVSkl8ywPiRlvixKdvTODMSZo0jMqlfZSNaAPTsNRx4wu5Uis4qekwe32Fz4aB6KGpsuuVjBi+H6v0RKxNJNGY3JKDiEH2TK0UE2auJ5GvLW48aUVFcQMB7euCWYXlSWVRHh3WLU8QXF29Dw4JduRZqUpOdRgMHU79UHRq+mkE0jAS/nBcS6CvsmxCpTSrfVYuMOu32yt18QQoTyU="
Brett Cannonbb09c862017-02-10 14:21:15 -0800111 on_success: change
112 on_failure: always
113 skip_join: true