From cd2f2599b843734efb3783e3cf62fe9f0cdf41cb Mon Sep 17 00:00:00 2001 From: Edouard DUPIN Date: Mon, 19 Oct 2015 21:33:12 +0200 Subject: [PATCH] [CI] Continue build integratuion to work better --- .travis.yml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 892b6287..5745b803 100644 --- a/.travis.yml +++ b/.travis.yml @@ -68,9 +68,20 @@ before_script: fi script: - - lutin -w -j4 -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF $GCOV -p ewol-test 0XX_customwidget 001_HelloWord + - lutin -w -j4 -C -P -c $BUILDER $COMPILATOR_OPTION -m $CONF $GCOV ewol-test 0XX_customwidget 001_HelloWord +after_script: + - if [ "$GCOV" != "" ]; then + python ./warning_send.py --find-path ./out/Linux_x86_64/$CONF/build/$BUILDER/ewol/; + fi + - ./out/Linux_x86_64/$CONF/staging/$BUILDER/ewol-test/ewol-test.app/bin/ewol-test -l6 | tee out_test.txt + - if [ "$GCOV" != "" ]; then + python ./test_send.py --file=out_test.txt; + lutin -C -P -c $TARGET $BUILDER $COMPILATOR_OPTION -m $CONF -p ewol?gcov; + python ./coverage_send.py --json=out/Linux_x86_64/$CONF/build/$BUILDER/ewol/ewol_coverage.json; + fi + notifications: email: - yui.heero@gmail.com