mirror of
git://git.yoctoproject.org/yocto-autobuilder2.git
synced 2025-07-19 20:59: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:
|
else:
|
||||||
steps = []
|
steps = []
|
||||||
for s in jsonconfig:
|
for s in jsonconfig:
|
||||||
|
if 'bbname' in s:
|
||||||
|
name = s['bbname']
|
||||||
|
else:
|
||||||
name = "run-config-" + s['name'] + "-" + s['phase']
|
name = "run-config-" + s['name'] + "-" + s['phase']
|
||||||
steps.append(get_runconfig_step(name, s['name'], s['phase'], name, self.posttrigger))
|
steps.append(get_runconfig_step(name, s['name'], s['phase'], s['description'], self.posttrigger))
|
||||||
self.build.addStepsAfterCurrentStep(steps)
|
self.build.addStepsAfterCurrentStep(steps)
|
||||||
return SUCCESS
|
return SUCCESS
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user