builders: Allow bringup workload on any worker, ignore filters

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2022-06-21 20:35:52 +01:00
parent c91b43c415
commit 1f76afc03f

View File

@ -144,7 +144,7 @@ def nextWorker(bldr, workers, buildrequest):
if '' in buildrequest.sources:
# Has to be a better way to do this
branch = buildrequest.sources[''].branch
if branch and branch in config.workers_prev_releases:
if branch and branch in config.workers_prev_releases and "bringup" not in bldr.name:
possible_workers = []
for w in workers:
if w.worker.workername.startswith(config.workers_prev_releases[branch]):