From 27ea4d1e7e1d8855d5b1ca620227f359a6068fbe Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Sat, 27 Jul 2019 18:53:22 +0200 Subject: [PATCH] tests: be verbose when running make on CI when an error happens Otherwise, we don't really know why we get errors. --- tests/ci/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/ci/run.sh b/tests/ci/run.sh index 81d38da0..975c778e 100755 --- a/tests/ci/run.sh +++ b/tests/ci/run.sh @@ -21,7 +21,8 @@ esac cat config.log exit 1 } -make all check ${MAKE_ARGS-CFLAGS=-Werror} +make all ${MAKE_ARGS-CFLAGS=-Werror} || make all ${MAKE_ARGS-CFLAGS=-Werror} V=1 +make check ${MAKE_ARGS-CFLAGS=-Werror} make distcheck case "$(uname -s)" in -- 2.39.5