diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2018-07-20 11:40:58 -0400 |
---|---|---|
committer | Stefan Schmidt <s.schmidt@samsung.com> | 2018-07-30 17:40:57 +0200 |
commit | bc248fdcf2095f5e047b7fc6e0f7273e521470d4 (patch) | |
tree | 8a067fbaac11b8a24141094b1083ae92c337e8c8 /.ci | |
parent | 0dc35fe8b3dd0dda40656b728504219940c9d13c (diff) | |
download | efl-bc248fdcf2095f5e047b7fc6e0f7273e521470d4.tar.gz |
ci: attempt to print the test logs if distcheck fails
distcheck failures from test failures are hard to debug since distcheck
is more complicated than a regular build, this is a first step in providing
info for that debugging
Differential Revision: https://phab.enlightenment.org/D6652
Diffstat (limited to '.ci')
-rwxr-xr-x | .ci/ci-make-distcheck.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/ci-make-distcheck.sh b/.ci/ci-make-distcheck.sh index f4e66dfbbe..c79c397470 100755 --- a/.ci/ci-make-distcheck.sh +++ b/.ci/ci-make-distcheck.sh @@ -10,7 +10,7 @@ if [ "$DISTRO" != "" ] ; then docker exec --env MAKEFLAGS="-j5 -rR" --env EIO_MONITOR_POLL=1 --env CC="ccache gcc" \ --env CXX="ccache g++" \ --env CFLAGS="-fdirectives-only" --env CXXFLAGS="-fdirectives-only" \ - $(cat $HOME/cid) make distcheck + $(cat $HOME/cid) make distcheck || (sudo cat efl-*/_build/sub/src/test-suite.log; false) else export PATH="/usr/local/opt/ccache/libexec:$(brew --prefix gettext)/bin:$PATH" make |