reproducible-meta-oe: start 2 hours earlier

The weekly reproducible-meta-oe was setup to run at night but now
extends into the day. Push it back a couple of hours to avoid loading
the cluster during the day (even if that is a lesser problem on
weekends).

Signed-off-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Yoann Congal 2025-07-10 10:46:56 +02:00 committed by Richard Purdie
parent f5bd6ea704
commit 6a5b665536

View File

@ -572,9 +572,9 @@ schedulers.append(sched.Nightly(name='nightly-check-layer', branch='master', pro
schedulers.append(sched.Nightly(name='nightly-meta-oe-mirror', branch='master', properties=parent_default_props('meta-oe-mirror'),
builderNames=['meta-oe-mirror'], hour=0, minute=0))
# Run reproducible-meta-oe for master once a week on weekends (2am on Saturday)
# Run reproducible-meta-oe for master once a week on weekends (midnight on Friday-Saturday night)
schedulers.append(sched.Nightly(name='nightly-reproducible-meta-oe', branch='master', properties=parent_default_props('reproducible-meta-oe'),
builderNames=['reproducible-meta-oe'], hour=2, minute=0, dayOfWeek=5))
builderNames=['reproducible-meta-oe'], hour=0, minute=0, dayOfWeek=5))
# Run metrics at 3-7am each day
schedulers.append(sched.Nightly(name='nightly-metrics-dunfell', branch='dunfell', properties=parent_default_props('metrics', 'dunfell'), builderNames=['metrics'], hour=6, minute=0, codebases = {'' : {'branch' : 'dunfell'}}))