2015-09-21 16:38:11 -06:00
|
|
|
sudo: false
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2015-08-31 09:25:44 -06:00
|
|
|
- gcc-multilib
|
|
|
|
- g++-multilib
|
2015-09-21 16:50:21 -06:00
|
|
|
- lua5.2
|
2015-08-31 09:25:44 -06:00
|
|
|
- libxml-libxml-perl
|
|
|
|
- libxml-libxslt-perl
|
|
|
|
- zlib1g-dev:i386
|
2015-02-14 21:40:44 -07:00
|
|
|
language: cpp
|
2015-02-23 16:44:36 -07:00
|
|
|
before_install:
|
2015-09-22 02:42:15 -06:00
|
|
|
pip install --user sphinx
|
2015-02-14 18:10:48 -07:00
|
|
|
script:
|
2015-08-31 09:25:44 -06:00
|
|
|
- git tag tmp-travis-build
|
2015-10-30 21:30:06 -06:00
|
|
|
- sh travis/git-info.sh
|
2015-02-15 11:23:39 -07:00
|
|
|
- python travis/pr-check-base.py
|
2015-02-23 16:44:36 -07:00
|
|
|
- python travis/lint.py
|
2015-11-26 11:17:18 -07:00
|
|
|
- python travis/authors-rst.py
|
2015-09-22 23:25:41 -06:00
|
|
|
- python travis/script-in-readme.py
|
2015-09-26 18:04:42 -06:00
|
|
|
- python travis/script-syntax.py --ext=lua --cmd="luac5.2 -p"
|
2015-11-07 13:50:11 -07:00
|
|
|
- python travis/script-syntax.py --ext=rb --cmd="ruby -c" --path scripts/
|
2015-08-31 09:25:44 -06:00
|
|
|
- mkdir build-travis
|
|
|
|
- cd build-travis
|
2015-12-19 08:55:35 -07:00
|
|
|
- cmake .. -DBUILD_DOCS:BOOL=ON
|
|
|
|
- make -j3
|
2015-02-15 11:25:00 -07:00
|
|
|
notifications:
|
2015-09-26 18:04:42 -06:00
|
|
|
email: false
|