From 412bae00626f1faa03ebfee41e33a4d69dc613d9 Mon Sep 17 00:00:00 2001 From: Martin Matuska Date: Fri, 18 Nov 2016 00:17:31 +0100 Subject: [PATCH] Fix return code of ci_build.sh if tests fail with autotools --- build/ci_build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/ci_build.sh b/build/ci_build.sh index c3cf7855b..ff8ef2dab 100755 --- a/build/ci_build.sh +++ b/build/ci_build.sh @@ -91,8 +91,8 @@ for action in ${ACTIONS}; do case "${BUILD_SYSTEM}" in autotools) if ! make ${MAKE_ARGS} check; then - RET="$?" cat test-suite.log + exit 1 fi ;; cmake) -- 2.47.2