2017-02-19 01:11:59 -04:00
|
|
|
language: c
|
|
|
|
dist: trusty
|
|
|
|
sudo: false
|
|
|
|
group: beta
|
|
|
|
|
2017-09-05 11:03:29 -03:00
|
|
|
# To cache doc-building dependencies and C compiler output.
|
|
|
|
cache:
|
|
|
|
- pip
|
|
|
|
- ccache
|
2017-02-19 01:11:59 -04:00
|
|
|
|
2017-02-26 09:07:12 -04:00
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- /^\d\.\d$/
|
|
|
|
|
2017-02-19 01:11:59 -04:00
|
|
|
matrix:
|
2017-02-26 09:07:12 -04:00
|
|
|
fast_finish: true
|
2017-02-19 01:11:59 -04:00
|
|
|
allow_failures:
|
2017-06-03 14:33:53 -03:00
|
|
|
- env: OPTIONAL=true
|
2017-02-19 01:11:59 -04:00
|
|
|
include:
|
|
|
|
- os: linux
|
2017-05-31 19:52:39 -03:00
|
|
|
language: c
|
|
|
|
compiler: clang
|
|
|
|
# gcc also works, but to keep the # of concurrent builds down, we use one C
|
2017-06-03 14:33:53 -03:00
|
|
|
# compiler here and the other to run the coverage build. Clang is preferred
|
|
|
|
# in this instance for its better error messages.
|
|
|
|
env: TESTING=cpython
|
2017-05-31 19:52:39 -03:00
|
|
|
- os: linux
|
2017-02-19 01:11:59 -04:00
|
|
|
language: python
|
2017-03-27 20:46:31 -03:00
|
|
|
python: 3.6
|
2017-06-03 14:33:53 -03:00
|
|
|
env: TESTING=docs
|
2017-02-19 01:11:59 -04:00
|
|
|
before_script:
|
2017-02-26 09:07:12 -04:00
|
|
|
- cd Doc
|
2017-05-16 18:28:21 -03:00
|
|
|
# Sphinx is pinned so that new versions that introduce new warnings won't suddenly cause build failures.
|
|
|
|
# (Updating the version is fine as long as no warnings are raised by doing so.)
|
2017-09-05 04:10:31 -03:00
|
|
|
- python -m pip install sphinx~=1.6.1 blurb
|
2017-02-19 01:11:59 -04:00
|
|
|
script:
|
2017-05-30 19:29:24 -03:00
|
|
|
- make check suspicious html SPHINXOPTS="-q -W -j4"
|
2017-02-19 01:11:59 -04:00
|
|
|
- os: linux
|
|
|
|
language: c
|
2017-03-27 20:46:31 -03:00
|
|
|
compiler: gcc
|
2017-06-03 14:33:53 -03:00
|
|
|
env: OPTIONAL=true
|
2017-02-19 01:11:59 -04:00
|
|
|
before_script:
|
|
|
|
- |
|
2017-06-05 21:10:21 -03:00
|
|
|
if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
|
2017-02-19 01:11:59 -04:00
|
|
|
then
|
|
|
|
echo "Only docs were updated, stopping build process."
|
|
|
|
exit
|
|
|
|
fi
|
2017-12-13 19:51:45 -04:00
|
|
|
# Build in release mode
|
|
|
|
./configure PYTHON_FOR_REGEN=python3
|
2017-02-19 01:11:59 -04:00
|
|
|
make -s -j4
|
|
|
|
# Need a venv that can parse covered code.
|
|
|
|
./python -m venv venv
|
|
|
|
./venv/bin/python -m pip install -U coverage
|
2017-08-21 19:17:15 -03:00
|
|
|
./venv/bin/python -m test.pythoninfo
|
2017-02-19 01:11:59 -04:00
|
|
|
script:
|
|
|
|
# Skip tests that re-run the entire test suite.
|
2017-07-20 12:08:48 -03:00
|
|
|
- ./venv/bin/python -m coverage run --pylib -m test -uall,-cpu -x test_multiprocessing_fork -x test_multiprocessing_forkserver -x test_multiprocessing_spawn
|
2017-02-19 01:11:59 -04:00
|
|
|
after_script: # Probably should be after_success once test suite updated to run under coverage.py.
|
|
|
|
# Make the `coverage` command available to Codecov w/ a version of Python that can parse all source files.
|
|
|
|
- source ./venv/bin/activate
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
|
2017-06-05 21:10:21 -03:00
|
|
|
# Travis provides only 2 cores, so don't overdo the parallelism and waste memory.
|
2017-02-19 01:11:59 -04:00
|
|
|
before_script:
|
|
|
|
- |
|
2017-06-11 13:30:57 -03:00
|
|
|
set -e
|
2018-01-27 18:48:09 -04:00
|
|
|
if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then
|
|
|
|
files_changed=$(git diff --name-only $TRAVIS_COMMIT_RANGE)
|
|
|
|
else
|
|
|
|
# Pull requests are slightly complicated because merging the PR commit without
|
|
|
|
# rebasing causes it to retain its old commit date. Meaning in history if any
|
|
|
|
# commits have been made on master that post-date it, they will be accidentally
|
|
|
|
# included in the diff if we use the TRAVIS_COMMIT_RANGE variable.
|
|
|
|
files_changed=$(git diff --name-only HEAD $(git merge-base HEAD $TRAVIS_BRANCH))
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Prints changed files in this commit to help debug doc-only build issues.
|
|
|
|
echo "Files changed: "
|
|
|
|
echo $files_changed
|
|
|
|
|
2018-02-08 16:01:23 -04:00
|
|
|
if ! echo "$files_changed" | grep -qvE '(\.rst$)|(^Doc)|(^Misc)'
|
2017-02-19 01:11:59 -04:00
|
|
|
then
|
|
|
|
echo "Only docs were updated, stopping build process."
|
|
|
|
exit
|
|
|
|
fi
|
2017-12-13 19:51:45 -04:00
|
|
|
# Build in debug mode
|
|
|
|
./configure --with-pydebug PYTHON_FOR_REGEN=python3
|
2018-02-17 21:27:22 -04:00
|
|
|
make -j4 regen-all
|
2017-06-11 13:30:57 -03:00
|
|
|
changes=`git status --porcelain`
|
|
|
|
if ! test -z "$changes"
|
|
|
|
then
|
|
|
|
echo "Generated files not up to date"
|
|
|
|
echo "$changes"
|
|
|
|
exit 1
|
|
|
|
fi
|
2018-02-17 21:27:22 -04:00
|
|
|
make -j4
|
2017-08-21 19:17:15 -03:00
|
|
|
make pythoninfo
|
2017-02-19 01:11:59 -04:00
|
|
|
|
|
|
|
script:
|
2017-06-24 21:59:49 -03:00
|
|
|
# Using the built Python as patchcheck.py is built around the idea of using
|
|
|
|
# a checkout-build of CPython to know things like what base branch the changes
|
|
|
|
# should be compared against.
|
|
|
|
# Only run on Linux as the check only needs to be run once.
|
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then ./python Tools/scripts/patchcheck.py --travis $TRAVIS_PULL_REQUEST; fi
|
2017-02-19 01:11:59 -04:00
|
|
|
# `-r -w` implicitly provided through `make buildbottest`.
|
2017-07-20 12:08:48 -03:00
|
|
|
- make buildbottest TESTOPTS="-j4 -uall,-cpu"
|
2017-02-19 01:11:59 -04:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
irc:
|
|
|
|
channels:
|
|
|
|
# This is set to a secure variable to prevent forks from notifying the
|
|
|
|
# IRC channel whenever they fail a build. This can be removed when travis
|
|
|
|
# implements https://github.com/travis-ci/travis-ci/issues/1094.
|
|
|
|
# The actual value here is: irc.freenode.net#python-dev
|
|
|
|
- secure: "s7kAkpcom2yUJ8XqyjFI0obJmhAGrn1xmoivdaPdgBIA++X47TBp1x4pgDsbEsoalef7bEwa4l07KdT4qa+DOd/c4QxaWom7fbN3BuLVsZuVfODnl79+gYq/TAbGfyH+yDs18DXrUfPgwD7C5aW32ugsqAOd4iWzfGJQ5OrOZzqzGjYdYQUEkJFXgxDEIb4aHvxNDWGO3Po9uKISrhb5saQ0l776yLo1Ur7M4oxl8RTbCdgX0vf5TzPg52BgvZpOgt3DHOUYPeiJLKNjAE6ibg0U95sEvMfHX77nz4aFY4/3UI6FFaRla34rZ+mYKrn0TdxOhera1QOgPmM6HzdO4K44FpfK1DS0Xxk9U9/uApq+cG0bU3W+cVUHDBe5+90lpRBAXHeHCgT7TI8gec614aiT8lEr3+yH8OBRYGzkjNK8E2LJZ/SxnVxDe7aLF6AWcoWLfS6/ziAIBFQ5Nc4U72CT8fGVSkl8ywPiRlvixKdvTODMSZo0jMqlfZSNaAPTsNRx4wu5Uis4qekwe32Fz4aB6KGpsuuVjBi+H6v0RKxNJNGY3JKDiEH2TK0UE2auJ5GvLW48aUVFcQMB7euCWYXlSWVRHh3WLU8QXF29Dw4JduRZqUpOdRgMHU79UHRq+mkE0jAS/nBcS6CvsmxCpTSrfVYuMOu32yt18QQoTyU="
|
|
|
|
on_success: change
|
|
|
|
on_failure: always
|
|
|
|
skip_join: true
|