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:
Alexandre Belloni 2021-08-13 17:48:43 +02:00 committed by Richard Purdie
parent 0fa2d40f05
commit 6bc7226d43

View File

@ -218,11 +218,15 @@ def props_for_builder(builder):
scheduler
"""
swat_default = True
if builder in ['auh', 'meta-oe']:
swat_default = False
props = []
props.append(util.BooleanParameter(
name="swat_monitor",
label="Should SWAT monitor this build?",
default=True))
default=swat_default))
if builder == 'build-appliance':
props.append(buildappsrcrev_param())
if builder in ['build-appliance', 'buildtools', 'eclipse-plugin-neon', 'eclipse-plugin-oxygen']: