ci: disable backtracing on log errors
authorMike Blumenkrantz <zmike@samsung.com>
Mon, 6 Aug 2018 19:40:54 +0000 (15:40 -0400)
committerWoochanlee <wc0917.lee@samsung.com>
Thu, 23 Aug 2018 06:43:06 +0000 (15:43 +0900)
this is just spam that fills up the logs and sometimes causes builds to
abort when they reach the maximum log size

Differential Revision: https://phab.enlightenment.org/D6788

.ci/ci-make-check.sh
.ci/distcheck.sh

index a55f8be..4ecf5b5 100755 (executable)
@@ -13,7 +13,7 @@ fi
 travis_fold check "make check-TESTS"
 if [ "$DISTRO" != "" ] ; then
   for tries in 1 2 3 ; do
-    (docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) make -j2 -C src/ check-TESTS) && break
+    (docker exec --env EINA_LOG_BACKTRACE="0" --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) make -j2 -C src/ check-TESTS) && break
     docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) cat src/test-suite.log
     if [ $tries != 3 ] ; then echo "tests failed, trying again!" ; fi
     false
index 0024ce8..890e9dd 100755 (executable)
@@ -69,6 +69,7 @@ make ${AM_MAKEFLAGS} check-build
 travis_endfold check-build
 travis_fold check-TESTS check-TESTS
 set +e
+export EINA_LOG_BACKTRACE="0"
 for tries in 1 2 3 ; do
   make ${AM_MAKEFLAGS} -C src/ -j1 check-TESTS && break
   cat src/test-suite.log