From f43f95265d71d7554a366d4e0f96132ca9820835 Mon Sep 17 00:00:00 2001 From: Giacomo Tesio Date: Fri, 6 Jan 2017 03:47:40 +0100 Subject: [PATCH] continuous-build.sh: allow to skip QA --- continuous-build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/continuous-build.sh b/continuous-build.sh index a29b919..035e2ea 100755 --- a/continuous-build.sh +++ b/continuous-build.sh @@ -38,6 +38,7 @@ if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then build all + if [ "$CHECK_QA" != "" ]; then if [ "$TRAVIS_BUILD_DIR" != "" ]; then echo "Run QA checks" echo /qa/check | NCPU=2 KERNEL=workhorse.32bit KERNDIR=$JEHANNE/hacking/bin/ runqemu @@ -48,4 +49,5 @@ if [ "${COVERITY_SCAN_BRANCH}" != 1 ]; then fi mv $JEHANNE/hacking/cross/toolchain/* $JEHANNE/tmp/toolchain/ fi + fi fi