blob: 16fd0251091fd38eb93e5ed117f2da359c00df09 [file] [log] [blame]
INADA Naoki98604c72017-02-20 09:44:53 +09001language: c
2dist: trusty
3sudo: false
4group: beta
5
6# To cache doc-building dependencies.
7cache: pip
8
9os:
10 - linux
11 # macOS builds are disabled as the machines are under-provisioned on Travis,
12 # adding up to an extra hour completing a full CI run.
INADA Naoki98604c72017-02-20 09:44:53 +090013
14compiler:
15 - clang
Brett Cannond6654072017-03-27 16:47:35 -070016 # gcc also works, but to keep the # of concurrent builds down, we use one C
17 # compiler here and the other to run the coverage build.
INADA Naoki98604c72017-02-20 09:44:53 +090018
19env:
20 - TESTING=cpython
21
22matrix:
23 include:
24 - os: linux
25 language: python
26 python: 2.7
27 env:
28 - TESTING=docs
29 before_script:
Zachary Warebd82a072017-05-13 10:05:53 -050030 - cd Doc
INADA Naoki98604c72017-02-20 09:44:53 +090031 - pip install -U Sphinx
32 script:
Zachary Warebd82a072017-05-13 10:05:53 -050033 - make check suspicious html SPHINXOPTS="-q -W"
INADA Naoki98604c72017-02-20 09:44:53 +090034
35# Travis provides only 2 cores, so don't overdue the parallelism and waste memory.
36before_script:
37 - |
38 if ! git diff --name-only $TRAVIS_COMMIT_RANGE | grep -qvE '(\.(rst|yml)$)|(^Doc)/'
39 then
40 echo "Only docs were updated, stopping build process."
41 exit
42 fi
43 ./configure --with-pydebug
44 make -j4
45
46script:
47 # `-r -w` implicitly provided through `make buildbottest`.
48 - make buildbottest TESTOPTS="-j4"
INADA Naoki98604c72017-02-20 09:44:53 +090049
50notifications:
51 email: false
52 irc:
53 channels:
54 # This is set to a secure variable to prevent forks from notifying the
55 # IRC channel whenever they fail a build. This can be removed when travis
56 # implements https://github.com/travis-ci/travis-ci/issues/1094.
57 # The actual value here is: irc.freenode.net#python-dev
58 - secure: "s7kAkpcom2yUJ8XqyjFI0obJmhAGrn1xmoivdaPdgBIA++X47TBp1x4pgDsbEsoalef7bEwa4l07KdT4qa+DOd/c4QxaWom7fbN3BuLVsZuVfODnl79+gYq/TAbGfyH+yDs18DXrUfPgwD7C5aW32ugsqAOd4iWzfGJQ5OrOZzqzGjYdYQUEkJFXgxDEIb4aHvxNDWGO3Po9uKISrhb5saQ0l776yLo1Ur7M4oxl8RTbCdgX0vf5TzPg52BgvZpOgt3DHOUYPeiJLKNjAE6ibg0U95sEvMfHX77nz4aFY4/3UI6FFaRla34rZ+mYKrn0TdxOhera1QOgPmM6HzdO4K44FpfK1DS0Xxk9U9/uApq+cG0bU3W+cVUHDBe5+90lpRBAXHeHCgT7TI8gec614aiT8lEr3+yH8OBRYGzkjNK8E2LJZ/SxnVxDe7aLF6AWcoWLfS6/ziAIBFQ5Nc4U72CT8fGVSkl8ywPiRlvixKdvTODMSZo0jMqlfZSNaAPTsNRx4wu5Uis4qekwe32Fz4aB6KGpsuuVjBi+H6v0RKxNJNGY3JKDiEH2TK0UE2auJ5GvLW48aUVFcQMB7euCWYXlSWVRHh3WLU8QXF29Dw4JduRZqUpOdRgMHU79UHRq+mkE0jAS/nBcS6CvsmxCpTSrfVYuMOu32yt18QQoTyU="
59 on_success: change
60 on_failure: always
61 skip_join: true