comparison .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
comparison
equal deleted inserted replaced
13647:e52dc6a80a88 13648:544d9b63f9e9
106 - make $SHADOWOPT $TEST 106 - make $SHADOWOPT $TEST
107 - if [ -n "$ASAN_OPTIONS" ]; then for log in $(find -type f -name 'asan.*' -size +0); do asan_symbolize < "$log"; err=1; done; fi 107 - if [ -n "$ASAN_OPTIONS" ]; then for log in $(find -type f -name 'asan.*' -size +0); do asan_symbolize < "$log"; err=1; done; fi
108 - if [ -n "$err" ]; then exit 1; fi 108 - if [ -n "$err" ]; then exit 1; fi
109 109
110 after_success: 110 after_success:
111 - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b $SRCDIR -x .xs -e ${SRCDIR}/if_perl.c --encodings utf-8 latin-1 EUC-KR; fi 111 - 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
112 - if [ "$COVERAGE" = "yes" ]; then cd $SRCDIR && bash <(curl -s https://codecov.io/bash) ; fi 112 - if [ "$COVERAGE" = "yes" ]; then cd $SRCDIR && bash <(curl -s https://codecov.io/bash) ; fi
113 113
114 # vim:set sts=2 sw=2 tw=0 et: 114 # vim:set sts=2 sw=2 tw=0 et: