schedulers.py: Set indexing to every few hours to minimise console disruption for now

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2024-07-12 23:42:59 +01:00
parent a3cbeaff08
commit 11a1e0a899

View File

@ -542,7 +542,8 @@ schedulers.append(sched.Nightly(name='nightly-auh', branch='master', properties=
# 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]))
builderNames=['indexing'], hour=[0, 9, 12, 15, 18, 21]))
#minute=[0,15,30,45]
# If any of our sphinx docs branches change, trigger a build
schedulers.append(sched.AnyBranchScheduler(name="yocto-docs-changed",