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-install.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-install.sh')
-rwxr-xr-x | .ci/ci-make-install.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.ci/ci-make-install.sh b/.ci/ci-make-install.sh index 9856179080..0b2970533f 100755 --- a/.ci/ci-make-install.sh +++ b/.ci/ci-make-install.sh @@ -1,14 +1,15 @@ #!/bin/sh set -e - +. .ci/travis.sh if [ "$1" = "release-ready" ] ; then exit 0 fi - +travis_fold install "make install" if [ "$DISTRO" != "" ] ; then docker exec --env MAKEFLAGS="-j5" --env EIO_MONITOR_POLL=1 $(cat $HOME/cid) make install else export PATH="/usr/local/opt/ccache/libexec:$(brew --prefix gettext)/bin:$PATH" make install fi +travis_endfold install |