summaryrefslogtreecommitdiff
path: root/.ci/ci-make-benchmark.sh
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@samsung.com>2018-07-13 18:29:25 -0400
committerStefan Schmidt <s.schmidt@samsung.com>2018-07-26 08:55:59 +0200
commitc06be53b0389a2c5d4d8cad89e53dbfe184b4298 (patch)
tree70603f5e0c491c926c3d46045ba328573bebc0f7 /.ci/ci-make-benchmark.sh
parentd568c6f1251048e0e3378beccbf9d915ce12fa28 (diff)
downloadefl-c06be53b0389a2c5d4d8cad89e53dbfe184b4298.tar.gz
ci: add folding for travis logs
make the build a bit nicer to read the build output is still insanely verbose, so this isn't super useful as the 'pretty' view still takes so long to load that it's almost always better to just read the raw text log Differential Revision: https://phab.enlightenment.org/D6616
Diffstat (limited to '.ci/ci-make-benchmark.sh')
-rwxr-xr-x.ci/ci-make-benchmark.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/.ci/ci-make-benchmark.sh b/.ci/ci-make-benchmark.sh
index bd63977724..9005f482a9 100755
--- a/.ci/ci-make-benchmark.sh
+++ b/.ci/ci-make-benchmark.sh
@@ -1,14 +1,15 @@
#!/bin/sh
set -e
-
+. .ci/travis.sh
if [ "$1" = "release-ready" ] ; then
exit 0
fi
-
+travis_fold benchmark "make benchmark"
if [ "$DISTRO" != "" ] ; then
docker exec --env MAKEFLAGS="-j5" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) make benchmark
else
export PATH="/usr/local/opt/ccache/libexec:$(brew --prefix gettext)/bin:$PATH"
make benchmark
fi
+travis_endfold benchmark