schedulers: Add scheduler for auh once a month

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2020-06-10 10:24:52 +01:00
parent a7b04c45c8
commit 6375d089c2

View File

@ -291,3 +291,7 @@ schedulers.append(sched.Nightly(name='nightly-buildperf-ubuntu1604', branch='mas
schedulers.append(sched.Nightly(name='nightly-buildperf-centos7', branch='master', properties=parent_default_props('buildperf-centos7'),
builderNames=['buildperf-centos7'], hour=[3,9,15,21], minute=0))
# Run the AUH on the 15th of every month
schedulers.append(sched.Nightly(name='nightly-auh', branch='master', properties=parent_default_props('auh'),
builderNames=['auh'], dayOfMonth=15, hour=1, minute=0))