diff options
author | MarcoFalke <falke.marco@gmail.com> | 2016-01-04 02:06:04 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2016-01-04 19:24:07 +0100 |
commit | fada0c90b655226ddf79cd49dadb0d193f76edad (patch) | |
tree | aabfa7071fb03750930aad48dfbf6492218c3fca /.travis.yml | |
parent | 3cd836c1d855b92e7c73ab31979f471c4f8dad68 (diff) |
[travis] Fail when documentation is outdated
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index e2d43d6330..1a389a404c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -70,5 +70,6 @@ script: - export LD_LIBRARY_PATH=$TRAVIS_BUILD_DIR/depends/$HOST/lib - if [ "$RUN_TESTS" = "true" ]; then make check; fi - if [ "$RUN_TESTS" = "true" ]; then qa/pull-tester/rpc-tests.py --coverage; fi + - if [ "$RUN_TESTS" = "true" ]; then contrib/devtools/check-doc.py; fi after_script: - if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then (echo "Upload goes here. Something like: scp -r $BASE_OUTDIR server" || echo "upload failed"); fi |