diff --git a/.travis.yml b/.travis.yml index a8196c9..15635e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,16 +1,10 @@ language: c compiler: - clang -matrix: - include: - - compiler: gcc - env: COVERALLS=yes + - gcc before_install: - sudo apt-get update -qq - sudo apt-get install libperl-dev python-dev python3-dev ruby1.9.1-dev liblua5.1-0-dev lua5.1 - - sudo pip install cpp-coveralls --use-mirrors script: sh ./ci_run.sh -after_success: - - if [ $COVERALLS == yes ]; then cd vim && coveralls -b src -x .xs -e src/xxd -e src/if_perl.c -e src/hangulin.c -e src/digraph.c; fi # vim:set sts=2 sw=2 tw=0 et: diff --git a/ci_run.sh b/ci_run.sh index d75631b..8137c14 100755 --- a/ci_run.sh +++ b/ci_run.sh @@ -1,7 +1,7 @@ #!/bin/sh # vim:set sts=2 sw=2 tw=0 et: -cd vim && CFLAGS=-coverage LDFLAGS=-coverage \ +cd vim && \ ./configure \ --with-features=huge \ --enable-perlinterp \