mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
schedulers: change default value for SWAT monitoring
meta-oe and auh are not for SWAT, change the default to be false Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
0fa2d40f05
commit
6bc7226d43
|
@ -218,11 +218,15 @@ def props_for_builder(builder):
|
||||||
scheduler
|
scheduler
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
swat_default = True
|
||||||
|
if builder in ['auh', 'meta-oe']:
|
||||||
|
swat_default = False
|
||||||
|
|
||||||
props = []
|
props = []
|
||||||
props.append(util.BooleanParameter(
|
props.append(util.BooleanParameter(
|
||||||
name="swat_monitor",
|
name="swat_monitor",
|
||||||
label="Should SWAT monitor this build?",
|
label="Should SWAT monitor this build?",
|
||||||
default=True))
|
default=swat_default))
|
||||||
if builder == 'build-appliance':
|
if builder == 'build-appliance':
|
||||||
props.append(buildappsrcrev_param())
|
props.append(buildappsrcrev_param())
|
||||||
if builder in ['build-appliance', 'buildtools', 'eclipse-plugin-neon', 'eclipse-plugin-oxygen']:
|
if builder in ['build-appliance', 'buildtools', 'eclipse-plugin-neon', 'eclipse-plugin-oxygen']:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user