From 02814c3f28e47cf92f13117bc6110ce14625304f Mon Sep 17 00:00:00 2001 From: "K.Takata" Date: Thu, 26 Jun 2014 00:22:33 +0900 Subject: [PATCH] Enable coverage with clang Also enable encoding conversion of some source code files. --- .travis.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5a81447..61a6aa9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,15 +5,7 @@ compiler: - gcc env: - - COVERAGE=no - - COVERAGE=yes CFLAGS=-coverage LDFLAGS=-coverage - -matrix: - exclude: - - compiler: clang - env: COVERAGE=yes CFLAGS=-coverage LDFLAGS=-coverage - - compiler: gcc - env: COVERAGE=no + - COVERAGE=yes CFLAGS=--coverage LDFLAGS=--coverage before_install: - sudo apt-get update -qq @@ -23,6 +15,6 @@ before_install: script: sh ./ci_run.sh after_success: - - if [ x"$COVERAGE" == "xyes" ] ; 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 + - cd vim && coveralls -b src -x .xs -e src/xxd -e src/if_perl.c --encodings utf-8 latin-1 EUC-KR # vim:set sts=2 sw=2 tw=0 et: