mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-04 20:54:48 +02:00

Initial prototype of using yocto-autobuilder-helper scripts from vanilla buildbot to replicate yocto-autobuilder configuration. * README.md is updated to describe goals and approach * TODO contains known issues and work items, TODO: comments in the code point to specific locations of work Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
10 lines
311 B
Python
10 lines
311 B
Python
from buildbot.plugins import worker
|
|
from yoctoab import config
|
|
|
|
workers = []
|
|
|
|
for w in config.workers:
|
|
workers.append(worker.Worker(w, config.worker_password,
|
|
max_builds=config.worker_max_builds,
|
|
notify_on_missing=config.notify_on_missing))
|