mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 12:19:02 +02:00
runconfig: Allow more control of buildbot step name/desc
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
3a9b218c83
commit
2c17ca10da
|
@ -180,8 +180,11 @@ class RunConfigCheckSteps(shell.ShellCommand):
|
|||
else:
|
||||
steps = []
|
||||
for s in jsonconfig:
|
||||
name = "run-config-" + s['name'] + "-" + s['phase']
|
||||
steps.append(get_runconfig_step(name, s['name'], s['phase'], name, self.posttrigger))
|
||||
if 'bbname' in s:
|
||||
name = s['bbname']
|
||||
else:
|
||||
name = "run-config-" + s['name'] + "-" + s['phase']
|
||||
steps.append(get_runconfig_step(name, s['name'], s['phase'], s['description'], self.posttrigger))
|
||||
self.build.addStepsAfterCurrentStep(steps)
|
||||
return SUCCESS
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user