mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-04 20:54:48 +02:00
14 lines
361 B
Python
14 lines
361 B
Python
#
|
|
# 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))
|