Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marian-nmt/sentencepiece.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaku Kudo <taku@google.com>2017-03-08 14:41:18 +0300
committerTaku Kudo <taku@google.com>2017-03-08 14:41:18 +0300
commite98495b26ca5b99f64b45567bf6c08be415c4743 (patch)
tree3dd72a8d97d264deb50c15a64b9baa9723e827c5 /.travis.yml
parent7b6ee5127bfbed70f69eae087a6c09a95fed1077 (diff)
call make clean before coverage
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index ae36835..6b759f9 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -26,6 +26,6 @@ addons:
script:
- ./autogen.sh
- ./configure && make && make check
- - if [ "$CXX" = "g++-4.8" ]; then ./configure --enable-gcov && make && make check; fi
+ - if [ "$CXX" = "g++-4.8" ]; then make distclean && ./configure --enable-gcov && make && make check; fi
after_success:
- if [ "$CXX" = "g++-4.8" ]; then coveralls --exclude-pattern '.*(include|usr|test|third_party|pb).*' --gcov-options '\-lp'; fi