Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-06-12 16:54:38 +0000
committerDavid Williams2016-06-12 16:54:38 +0000
commit9fb1298b02f8c0175e1d2cf835485ebe2eb19fc9 (patch)
tree0ddb62e342d378a7ff26942ed1c6257391a8c9c8 /production/build-functions.shsource
parent59b8d6b948ed80de9b9cdc8b419888d86eb90c45 (diff)
downloadeclipse.platform.releng.aggregator-9fb1298b02f8c0175e1d2cf835485ebe2eb19fc9.tar.gz
eclipse.platform.releng.aggregator-9fb1298b02f8c0175e1d2cf835485ebe2eb19fc9.tar.xz
eclipse.platform.releng.aggregator-9fb1298b02f8c0175e1d2cf835485ebe2eb19fc9.zip
[releng] always fail-fast (even for N-builds) since some are failing mysteriously
Diffstat (limited to 'production/build-functions.shsource')
-rwxr-xr-xproduction/build-functions.shsource2
1 files changed, 2 insertions, 0 deletions
diff --git a/production/build-functions.shsource b/production/build-functions.shsource
index 8e85c297b..20766bb82 100755
--- a/production/build-functions.shsource
+++ b/production/build-functions.shsource
@@ -376,7 +376,9 @@ fn-maven-build-aggregator ()
if [[ -n "$BUILD_TYPE" && "$BUILD_TYPE" == "N" ]]
then
FORCEQUALIFIERARG="-DforceContextQualifier=${BUILD_ID}"
+ # always fail-fast for now. Otherwise too hard to debug.
FAIL_OPTION=${FAIL_OPTION:-"--fail-never"}
+ FAIL_OPTION=${FAIL_OPTION:-"--fail-fast"}
#CODE_WARNINGS="-Dcode.ignoredWarnings=-warn:-deprecation"
# For now treat N- and I-builds the same for bug 483395 comment 21.
CODE_WARNINGS=

Back to the top