mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
config/schedulers: Use 'a-' prefix to quick/full to improve sorting in UI
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
ba36e06dd8
commit
3efe9831ba
|
@ -306,5 +306,5 @@ def create_parent_builder_factory(waitname):
|
|||
name="Send QA Email"))
|
||||
return factory
|
||||
|
||||
builders.append(util.BuilderConfig(name="quick", workernames=config.workers, factory=create_parent_builder_factory("wait-quick"), env=extra_env))
|
||||
builders.append(util.BuilderConfig(name="full", workernames=config.workers, factory=create_parent_builder_factory("wait-full"), env=extra_env))
|
||||
builders.append(util.BuilderConfig(name="a-quick", workernames=config.workers, factory=create_parent_builder_factory("wait-quick"), env=extra_env))
|
||||
builders.append(util.BuilderConfig(name="a-full", workernames=config.workers, factory=create_parent_builder_factory("wait-full"), env=extra_env))
|
||||
|
|
|
@ -3,10 +3,10 @@
|
|||
buildertorepos = {
|
||||
"eclipse-plugin-neon": ["eclipse-poky-neon"],
|
||||
"eclipse-plugin-oxygen": ["eclipse-poky-oxygen"],
|
||||
"quick": ["poky", "meta-intel", "oecore", "bitbake",
|
||||
"a-quick": ["poky", "meta-intel", "oecore", "bitbake",
|
||||
"eclipse-poky-neon", "eclipse-poky-oxygen", "meta-qt4",
|
||||
"meta-qt3", "meta-mingw", "meta-gplv2"],
|
||||
"full": ["poky", "meta-intel", "oecore", "bitbake",
|
||||
"a-full": ["poky", "meta-intel", "oecore", "bitbake",
|
||||
"eclipse-poky-neon", "eclipse-poky-oxygen", "meta-qt4",
|
||||
"meta-qt3", "meta-mingw", "meta-gplv2"],
|
||||
"non-gpl3": ["poky", "meta-gplv2"],
|
||||
|
@ -70,7 +70,7 @@ trigger_builders_wait_full = trigger_builders_wait_shared + [
|
|||
]
|
||||
|
||||
subbuilders = list(set(trigger_builders_wait_quick + trigger_builders_wait_full + ["bringup"]))
|
||||
builders = ["quick", "full"] + subbuilders
|
||||
builders = ["a-quick", "a-full"] + subbuilders
|
||||
|
||||
# ## Cluster configuration
|
||||
# Publishing settings
|
||||
|
|
|
@ -242,6 +242,6 @@ def parent_scheduler(target):
|
|||
default=False)
|
||||
]+repos_for_builder(target))
|
||||
|
||||
schedulers.append(parent_scheduler("quick"))
|
||||
schedulers.append(parent_scheduler("full"))
|
||||
schedulers.append(parent_scheduler("a-quick"))
|
||||
schedulers.append(parent_scheduler("a-full"))
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user