aboutsummaryrefslogtreecommitdiffstats
path: root/workers.py
blob: 17f90fa9c1175aecf762254b0c951ae6b40714d9 (plain)
1
2
3
4
5
6
7
8
9
from buildbot.plugins import worker
from yoctoabb import config

workers = []

for w in config.all_workers:
    workers.append(worker.Worker(w, config.worker_password,
                                 max_builds=config.worker_max_builds,
                                 notify_on_missing=config.notify_on_missing))