mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-10-22 14:52:21 +02:00
schedulers: Fix branch test
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
010a0e43ae
commit
45b64625b3
|
@ -434,7 +434,7 @@ def builderNamesFromConfigQuick(props):
|
|||
|
||||
builders = config.trigger_builders_wait_quick
|
||||
for b in config.trigger_builders_wait_quick_releases:
|
||||
if yp_branch and yp_branch in b:
|
||||
if yp_branch and b in yp_branch:
|
||||
log.msg("builderNames: Filtering branch %s due to entry %s" % (str(yp_branch), str(b)))
|
||||
builders = config.trigger_builders_wait_quick_releases[b]
|
||||
|
||||
|
@ -447,7 +447,7 @@ def builderNamesFromConfigFull(props):
|
|||
|
||||
builders = config.trigger_builders_wait_full
|
||||
for b in config.trigger_builders_wait_full_releases:
|
||||
if yp_branch and yp_branch in b:
|
||||
if yp_branch and b in yp_branch:
|
||||
log.msg("builderNames: Filtering branch %s due to entry %s" % (str(yp_branch), str(b)))
|
||||
builders = config.trigger_builders_wait_full_releases[b]
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user