aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 7761baad..12d4679f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -98,12 +98,14 @@ install:
- make -j3
- make check
- mv src/.libs/*.gc* src
+ - ./proj -VC
script:
- echo "done"
after_success:
- - coveralls --extension .c
+# coveralls falsely reports .c-files in the build directories as having 100% coverage so we exclude them
+ - coveralls --extension .c --exclude build_autoconf --exclude build_cmake
- echo "$TRAVIS_SECURE_ENV_VARS"
- sh -c "./travis/build_docs.sh"
- sh -c 'if test "$TRAVIS_SECURE_ENV_VARS" = "true" -a "$TRAVIS_BRANCH" = "master"; then echo "publish website"; ./travis/add_deploy_key.sh; ./travis/deploy_website.sh $TRAVIS_BUILD_DIR/docs/build /tmp; fi'