Skip to content

Commit 146be90

Browse files
mike-nguyendustymabe
authored andcommitted
jobs/build: set EARLY_ARCH_JOBS to false by default
There is a lot of wasted work and leaked dead builds when EARLY_ARCH_JOBS is set. It has also caused downstream problems when someone forgets to unset it and incomplete builds are picked up. Lets turn it off by default and have the user enable when they need the time savings.
1 parent dba2d7f commit 146be90

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jobs/build.Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ properties([
3131
defaultValue: false,
3232
description: 'Whether to force a rebuild'),
3333
booleanParam(name: 'EARLY_ARCH_JOBS',
34-
defaultValue: true,
34+
defaultValue: false,
3535
description: "Fork off the multi-arch jobs before all tests have run"),
3636
booleanParam(name: 'ALLOW_KOLA_UPGRADE_FAILURE',
3737
defaultValue: false,

0 commit comments

Comments
 (0)