yocto-autobuilder2/workers.py
Joshua Lock 4fd189ab38 Initial prototype of using yocto-autobuilder-helper scripts
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>
2018-02-22 10:38:19 +00:00

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))