comparison .travis.yml @ 15197:074c643ee78f v8.1.0608

patch 8.1.0608: coverals is not updating commit https://github.com/vim/vim/commit/e66777901382a554797a4c70ffbc0c63440cfe57 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Dec 18 22:04:05 2018 +0100 patch 8.1.0608: coverals is not updating Problem: Coverals is not updating. Solution: Adjust path in Travis config.
author Bram Moolenaar <Bram@vim.org>
date Tue, 18 Dec 2018 22:15:06 +0100
parents 3cd05af56fd1
children d255018b40ff
comparison
equal deleted inserted replaced
15196:95a26636a542 15197:074c643ee78f
107 - make $SHADOWOPT $TEST 107 - make $SHADOWOPT $TEST
108 - 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 "$ASAN_OPTIONS" ]; then for log in $(find -type f -name 'asan.*' -size +0); do asan_symbolize < "$log"; err=1; done; fi
109 - if [ -n "$err" ]; then exit 1; fi 109 - if [ -n "$err" ]; then exit 1; fi
110 110
111 after_success: 111 after_success:
112 - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b ${SRCDIR} -x .xs -e ${SRCDIR}/if_perl.c -e ${SRCDIR}/xxd -e ${SRCDIR}/libvterm/src --encodings utf-8 latin-1 EUC-KR; fi 112 - if [ "$COVERAGE" = "yes" ]; then ~/.local/bin/coveralls -b ${SRCDIR} -x .xs -e ${SRCDIR}/if_perl.c -e ${SRCDIR}/xxd -e ${SRCDIR}/libvterm --encodings utf-8 latin-1 EUC-KR; fi
113 - if [ "$COVERAGE" = "yes" ]; then cd ${SRCDIR} && bash <(curl -s https://codecov.io/bash) ; fi 113 - if [ "$COVERAGE" = "yes" ]; then cd ${SRCDIR} && bash <(curl -s https://codecov.io/bash) ; fi
114 114
115 # vim:set sts=2 sw=2 tw=0 et: 115 # vim:set sts=2 sw=2 tw=0 et: