travis-ci: cat the test log after successful test runs
This lets us see which tests were skipped. Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk> Closes: #600 Approved by: cgwalters
This commit is contained in:
parent
db691b5520
commit
a1ab6b50f9
|
|
@ -65,6 +65,7 @@ make="make -j${ci_parallel} V=1 VERBOSE=1"
|
||||||
|
|
||||||
${make}
|
${make}
|
||||||
[ "$ci_test" = no ] || ${make} check || maybe_fail_tests
|
[ "$ci_test" = no ] || ${make} check || maybe_fail_tests
|
||||||
|
cat test/test-suite.log || :
|
||||||
# TODO: if ostree aims to support distcheck, run that too
|
# TODO: if ostree aims to support distcheck, run that too
|
||||||
|
|
||||||
${make} install DESTDIR=$(pwd)/DESTDIR
|
${make} install DESTDIR=$(pwd)/DESTDIR
|
||||||
|
|
@ -78,6 +79,8 @@ if [ "$ci_sudo" = yes ] && [ "$ci_test" = yes ]; then
|
||||||
GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0 \
|
GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0 \
|
||||||
${make} installcheck || \
|
${make} installcheck || \
|
||||||
maybe_fail_tests
|
maybe_fail_tests
|
||||||
|
cat test/test-suite.log || :
|
||||||
|
|
||||||
env \
|
env \
|
||||||
LD_LIBRARY_PATH=/usr/local/lib \
|
LD_LIBRARY_PATH=/usr/local/lib \
|
||||||
GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0 \
|
GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0 \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue