mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59:02 +02:00
config/schedulers: Add check-layer-nightly
Add a new target to run layer checks every 24 hours on various layers we don't test as part of the standard test runs. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
b824818ab9
commit
ea7c0aeeae
|
@ -23,6 +23,7 @@ buildertorepos = {
|
|||
"qemuarm-oecore": ["oecore", "bitbake"],
|
||||
"checkuri": ["poky"],
|
||||
"check-layer": ["poky", "meta-mingw", "meta-gplv2"],
|
||||
"check-layer-nightly": ["poky", "meta-agl", "meta-arm", "meta-aws", "meta-intel", "meta-openembedded", "meta-virtualization"],
|
||||
"docs": ["yocto-docs", "bitbake"],
|
||||
"default": ["poky"]
|
||||
}
|
||||
|
@ -110,6 +111,7 @@ builders_others = [
|
|||
"qemuarm-armhost",
|
||||
"meta-agl-core",
|
||||
"meta-aws",
|
||||
"check-layer-nightly",
|
||||
"auh"
|
||||
]
|
||||
|
||||
|
|
|
@ -352,6 +352,11 @@ schedulers.append(sched.Nightly(name='nightly-quick', branch='master', propertie
|
|||
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 check-layer-nightly each day
|
||||
schedulers.append(sched.Nightly(name='nightly-check-layer', branch='master', properties=parent_default_props('check-layer-nightly'),
|
||||
builderNames=['check-layer-nightly'], hour=0, minute=0))
|
||||
|
||||
|
||||
# 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'),
|
||||
builderNames=['buildperf-ubuntu1604'], hour=[3,9,15,21], minute=0))
|
||||
|
|
Loading…
Reference in New Issue
Block a user