config: Add buildperf-debian11

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2022-03-15 08:29:26 +00:00
parent 36dbd6b3c2
commit 2d60fe7103
3 changed files with 5 additions and 4 deletions

View File

@ -104,7 +104,7 @@ trigger_builders_wait_full_releases = {
"oe-selftest-ubuntu", "oe-selftest-debian", "oe-selftest-centos"] "oe-selftest-ubuntu", "oe-selftest-debian", "oe-selftest-centos"]
} }
trigger_builders_wait_perf = ["buildperf-ubuntu1604", "buildperf-centos7"] trigger_builders_wait_perf = ["buildperf-ubuntu1604", "buildperf-centos7", "buildperf-debian11"]
# Builders which are individually triggered # Builders which are individually triggered
builders_others = [ builders_others = [
@ -141,7 +141,7 @@ workers = workers_ubuntu + workers_centos + workers_fedora + workers_debian + wo
workers_bringup = [] workers_bringup = []
# workers with wine on them for meta-mingw # workers with wine on them for meta-mingw
workers_wine = ["ubuntu1804-ty-3"] workers_wine = ["ubuntu1804-ty-3"]
workers_buildperf = ["perf-ubuntu1604", "perf-centos7"] workers_buildperf = ["perf-ubuntu1604", "perf-centos7", "perf-debian11"]
workers_arm = ["ubuntu1804-arm-1", "ubuntu2004-arm-1"] workers_arm = ["ubuntu1804-arm-1", "ubuntu2004-arm-1"]
# workers which don't need buildtools for AUH and are able to send email to mailing lists # workers which don't need buildtools for AUH and are able to send email to mailing lists
workers_auh = ["alma8-ty-1", "alma8-ty-2"] workers_auh = ["alma8-ty-1", "alma8-ty-2"]
@ -183,6 +183,7 @@ builder_to_workers = {
"reproducible-centos": workers_centos, "reproducible-centos": workers_centos,
"meta-mingw": workers_wine, "meta-mingw": workers_wine,
"buildperf-ubuntu1604": ["perf-ubuntu1604"], "buildperf-ubuntu1604": ["perf-ubuntu1604"],
"buildperf-debian11": ["perf-debian11"],
"buildperf-centos7": ["perf-centos7"], "buildperf-centos7": ["perf-centos7"],
"qemuarm-armhost": workers_arm, "qemuarm-armhost": workers_arm,
"qemuarm64-ptest": workers_arm, "qemuarm64-ptest": workers_arm,

View File

@ -89,7 +89,7 @@ c['www'] = www.www
c['workers'] = workers.workers c['workers'] = workers.workers
# This enables our prioritizeBuilders function from builders.py. # This enables our prioritizeBuilders function from builders.py.
# Builders such as buildperf-centos7, buildperf-ubuntu1604, # Builders such as buildperf-*,
# oe-selftest-*, and reproducible-* will be assigned (if possible) # oe-selftest-*, and reproducible-* will be assigned (if possible)
# before other builders since their possible worker lists are smaller # before other builders since their possible worker lists are smaller
c['prioritizeBuilders'] = builders.prioritizeBuilders c['prioritizeBuilders'] = builders.prioritizeBuilders

View File

@ -413,7 +413,7 @@ schedulers.append(sched.Nightly(name='nightly-check-layer-dunfell', properties=p
# Run the build performance tests at 3am, 9am, 3pm and 9pm # 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'), 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)) builderNames=['buildperf-ubuntu1604', 'buildperf-debian11'], hour=[3,9,15,21], minute=0))
schedulers.append(sched.Nightly(name='nightly-buildperf-centos7', branch='master', properties=parent_default_props('buildperf-centos7'), 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)) builderNames=['buildperf-centos7'], hour=[3,9,15,21], minute=0))