From f47684818722f79ad1672b6bcae812bdf83660f3 Mon Sep 17 00:00:00 2001 From: MURAOKA Taro Date: Fri, 22 Nov 2013 01:47:38 +0900 Subject: [PATCH] disable coveralls for trial --- .travis.yml | 8 +------- ci_run.sh | 2 +- 2 files changed, 2 insertions(+), 8 deletions(-) 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 \