diff .travis.yml @ 13648:544d9b63f9e9 v8.0.1696

patch 8.0.1696: coverage statistics don't work commit https://github.com/vim/vim/commit/d60e0a1d202d49503ba95a40c165172c8f61db7a Author: Bram Moolenaar <Bram@vim.org> Date: Wed Apr 11 10:06:04 2018 +0200 patch 8.0.1696: coverage statistics don't work Problem: Coverate statistics don't work. Solution: Include the xxd directory. (Christian Brabandt)
author Christian Brabandt <cb@256bit.org>
date Wed, 11 Apr 2018 10:15:07 +0200
parents dd086b5d4cf7
children a87e16662e48
line wrap: on
line diff
--- a/.travis.yml
+++ b/.travis.yml
@@ -108,7 +108,7 @@ script:
   - if [ -n "$err" ]; then exit 1; fi
 
 after_success:
-  - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b $SRCDIR -x .xs -e ${SRCDIR}/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi
+  - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b $SRCDIR -x .xs -i $SRCDIR/xxd -e ${SRCDIR}/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi
   - if [ "$COVERAGE" = "yes" ]; then  cd $SRCDIR && bash <(curl -s https://codecov.io/bash) ; fi
 
 # vim:set sts=2 sw=2 tw=0 et: