aboutsummaryrefslogtreecommitdiffstats
path: root/workers.py
blob: e0b355375f3be49603bb2bf74d5c7955e3987b69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# SPDX-License-Identifier: GPL-2.0-only
#

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