summaryrefslogtreecommitdiff
path: root/.travis
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2019-01-06 17:25:14 +0000
committeriphydf <iphydf@users.noreply.github.com>2019-01-06 17:25:14 +0000
commit0f8b5c8255bb4a82487338710bb482c5e56fba1c (patch)
tree34f239c0a3b452ca4f918c45f1a2367e78e6f3c4 /.travis
parent765fd8a38ae68e7b9e889408c3480e4650993115 (diff)
Display build log for autotools build on failure.
We can't see the failure messages now, so something like "aborted", which probably means assertion failure, is not very useful right now. E.g. https://travis-ci.org/TokTok/c-toxcore/jobs/476028600#L1220
Diffstat (limited to '.travis')
-rwxr-xr-x.travis/autotools-linux2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis/autotools-linux b/.travis/autotools-linux
index a5bf1400..36828641 100755
--- a/.travis/autotools-linux
+++ b/.travis/autotools-linux
@@ -41,7 +41,7 @@ travis_script() {
41 cd _build # pushd 41 cd _build # pushd
42 ../configure $CONFIG_FLAGS || (cat config.log && false) 42 ../configure $CONFIG_FLAGS || (cat config.log && false)
43 make "-j$NPROC" -k CFLAGS="$C_FLAGS" LDFLAGS="$LD_FLAGS" 43 make "-j$NPROC" -k CFLAGS="$C_FLAGS" LDFLAGS="$LD_FLAGS"
44 make -j50 -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS" 44 make -j50 -k distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIG_FLAGS" || (cat build/test-suite.log && false)
45 cd - # popd 45 cd - # popd
46} 46}
47 47