IMPALA-5905: build-all-flag-combinations addendum Running the script under Jenkins revealed a couple of issues that I'd missed
Change-Id: Iaa97a981846a2397ecabb90b9039ba61c2c7af4e Reviewed-on: http://gerrit.cloudera.org:8080/8061 Reviewed-by: Philip Zeyliger <[email protected]> Reviewed-by: Matthew Jacobs <[email protected]> Tested-by: Tim Armstrong <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/5325b1c0 Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/5325b1c0 Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/5325b1c0 Branch: refs/heads/master Commit: 5325b1c07f4d215b9e5502076b925f05cea7c2b9 Parents: cbf38dc Author: Tim Armstrong <[email protected]> Authored: Wed Sep 13 12:05:27 2017 -0700 Committer: Tim Armstrong <[email protected]> Committed: Thu Sep 14 06:29:53 2017 +0000 ---------------------------------------------------------------------- bin/jenkins/build-all-flag-combinations.sh | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/5325b1c0/bin/jenkins/build-all-flag-combinations.sh ---------------------------------------------------------------------- diff --git a/bin/jenkins/build-all-flag-combinations.sh b/bin/jenkins/build-all-flag-combinations.sh index cfd6fde..ef1a89e 100755 --- a/bin/jenkins/build-all-flag-combinations.sh +++ b/bin/jenkins/build-all-flag-combinations.sh @@ -25,6 +25,7 @@ set -euo pipefail trap 'echo Error in $0 at line $LINENO: $(cd "'$PWD'" && awk "NR == $LINENO" $0)' ERR +. bin/impala-config.sh OPTIONS=("-skiptests" "-noclean") FAILED_OPTIONS="" for BUILD_TYPE in "" -asan -release -ubsan -tsan @@ -53,6 +54,7 @@ do done if [[ "$FAILED_OPTIONS" != "" ]] +then echo "Builds with the following options failed:" echo "$FAILED_OPTIONS" exit 1
