mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
schedulers: Allow a-full to run on Sundays instead of a-quick
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
09d64cfe0d
commit
5f3bc3f33d
|
@ -263,9 +263,12 @@ def parent_scheduler(target):
|
|||
schedulers.append(parent_scheduler("a-quick"))
|
||||
schedulers.append(parent_scheduler("a-full"))
|
||||
|
||||
# Run a-quick at 1am each day so we keep master tested and up to date in sstate and buildhistory
|
||||
# Run a-quick at 1am each day Mon-Sat so we keep master tested and up to date in sstate and buildhistory
|
||||
schedulers.append(sched.Nightly(name='nightly-quick', branch='master', properties=parent_default_props('a-quick'),
|
||||
builderNames=['a-quick'], hour=1, minute=0))
|
||||
builderNames=['a-quick'], hour=1, minute=0, dayOfWeek=[0,1,2,3,4,5]))
|
||||
# Run a-full at 1am Sun each Week
|
||||
schedulers.append(sched.Nightly(name='nightly-full', branch='master', properties=parent_default_props('a-full'),
|
||||
builderNames=['a-full'], hour=1, minute=0, dayOfWeek=6))
|
||||
|
||||
# Run the build performance tests at 3am, 9am, 3pm and 9pm
|
||||
schedulers.append(sched.Nightly(name='nightly-buildperf-ubuntu1604', branch='master', properties=parent_default_props('buildperf-ubuntu1604'),
|
||||
|
|
Loading…
Reference in New Issue
Block a user