config/schedulers: Add indexing target run every 15 mins

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2024-07-12 17:16:03 +01:00
parent d9dc0d0a52
commit c7a0d152be
2 changed files with 5 additions and 1 deletions

View File

@ -137,7 +137,7 @@ builders_others = [
"bringup", "bringup-fast",
"qemuarm-armhost",
"check-layer-nightly",
"metrics",
"metrics", "indexing",
"qemuriscv32", "qemuriscv32-tc",
"qemuriscv64", "qemuriscv64-ptest", "qemuriscv64-tc",
"qemuppc64", "qemuppc64-tc",

View File

@ -536,6 +536,10 @@ schedulers.append(sched.Nightly(name='nightly-toaster', branch='master', propert
schedulers.append(sched.Nightly(name='nightly-auh', branch='master', properties=parent_default_props('auh'),
builderNames=['auh'], dayOfMonth=[1, 15], hour=5, minute=0))
# Run the indexing targets every 15 mins
schedulers.append(sched.Nightly(name='sschduler-indexing', branch='master', properties=parent_default_props('indexing'),
builderNames=['indexing'], minute=[0,15,30,45]))
# If any of our sphinx docs branches change, trigger a build
schedulers.append(sched.AnyBranchScheduler(name="yocto-docs-changed",
change_filter=util.ChangeFilter(project=["yocto-docs"], branch=[None, "master", "master-next", "mickledore", "langdale", "kirkstone", "honister", "hardknott", "gatesgarth", "dunfell", "transition"]),