summaryrefslogtreecommitdiff
path: root/.ci/ci-make-check.sh
diff options
context:
space:
mode:
authorStefan Schmidt <s.schmidt@samsung.com>2020-06-02 16:03:00 +0200
committerStefan Schmidt <s.schmidt@samsung.com>2020-06-08 09:45:14 +0200
commitead6193504d4f742ff2adc9e5445a2d16fcddf7d (patch)
treea7c180964b39035fc386029cd6670af71b30c835 /.ci/ci-make-check.sh
parent816b3b36379b2eafc2cd91cd9d63597996f45a2a (diff)
downloadefl-ead6193504d4f742ff2adc9e5445a2d16fcddf7d.tar.gz
ci: travis: add more fold and timing markers in some forgotten places
In teh initial patch we forgot some interesting places we also want to fold and get timing info on. Dependency installation, cross native build step, coverity tools download and codecov run. Differential Revision: https://phab.enlightenment.org/D11938
Diffstat (limited to '.ci/ci-make-check.sh')
-rwxr-xr-x.ci/ci-make-check.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/.ci/ci-make-check.sh b/.ci/ci-make-check.sh
index ffdb56ab7f..17fedfea65 100755
--- a/.ci/ci-make-check.sh
+++ b/.ci/ci-make-check.sh
@@ -8,9 +8,9 @@ fi
NUM_TRIES=5
-travis_fold start "ninja-test"
-travis_time_start "ninja-test"
if [ "$1" = "codecov" ] ; then
+ travis_fold start "codecov"
+ travis_time_start "codecov"
for tries in $(seq 1 ${NUM_TRIES}); do
export EFL_TEST_ECORE_CON_IPV6=1
meson test -t 120 -C build --wrapper dbus-launch && break
@@ -19,9 +19,13 @@ if [ "$1" = "codecov" ] ; then
false
done
curl -s https://codecov.io/bash | bash -s -
+ travis_time_finish "codecov"
+ travis_fold end "codecov"
exit 0
fi
+travis_fold start "ninja-test"
+travis_time_start "ninja-test"
if [ "$DISTRO" != "" ] ; then
for tries in $(seq 1 ${NUM_TRIES}); do
(docker exec --env EINA_LOG_BACKTRACE="0" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) meson test -t 120 -C build --wrapper dbus-launch ) && break