diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-07-13 18:29:25 -0400 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-07-26 08:55:59 +0200 |
commit | c06be53b0389a2c5d4d8cad89e53dbfe184b4298 (patch) | |
tree | 70603f5e0c491c926c3d46045ba328573bebc0f7 /.ci/ci-make-examples.sh | |
parent | d568c6f1251048e0e3378beccbf9d915ce12fa28 (diff) | |
download | efl-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-examples.sh')
-rwxr-xr-x | .ci/ci-make-examples.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.ci/ci-make-examples.sh b/.ci/ci-make-examples.sh index 4ab0f70b7b..7b0a25c12f 100755 --- a/.ci/ci-make-examples.sh +++ b/.ci/ci-make-examples.sh @@ -1,14 +1,15 @@ #!/bin/sh set -e - +. .ci/travis.sh if [ "$1" = "release-ready" ] ; then exit 0 fi - +travis_fold examples "make examples" if [ "$DISTRO" != "" ] ; then docker exec --env MAKEFLAGS="-j5" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) make examples else export PATH="/usr/local/opt/ccache/libexec:$(brew --prefix gettext)/bin:$PATH" make examples fi +travis_endfold examples |