From 3645a2b3ccd6d2caad373a55b262731b7e6cc825 Mon Sep 17 00:00:00 2001 From: Dan Scott Date: Mon, 23 Apr 2012 13:45:14 -0400 Subject: [PATCH] Name the bootstrapping steps in buildbot Signed-off-by: Dan Scott --- examples/buildbot.cfg | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/examples/buildbot.cfg b/examples/buildbot.cfg index 9c5f503..84920d4 100644 --- a/examples/buildbot.cfg +++ b/examples/buildbot.cfg @@ -184,13 +184,15 @@ osrf_factory.addStep(source.Git( # bootstrap the code - old branches require autogen.sh osrf_factory.addStep( shell.ShellCommand(command=["./autogen.sh"], - doStepIf=osrf_requires_autogen + doStepIf=osrf_requires_autogen, + name="Bootstrap via autogen" ) ) osrf_factory.addStep( - shell.ShellCommand(command=["autoreconf -f -i"], - doStepIf=osrf_requires_autoreconf + shell.ShellCommand(command=["autoreconf", "-f", "-i"], + doStepIf=osrf_requires_autoreconf, + name="Bootstrap via autoreconf" ) ) @@ -243,13 +245,15 @@ eg_factory.addStep(source.Git( # bootstrap the code - old branches require autogen.sh eg_factory.addStep( shell.ShellCommand(command=["./autogen.sh"], - doStepIf=eg_requires_autogen + doStepIf=eg_requires_autogen, + name="Bootstrap via autogen" ) ) eg_factory.addStep( - shell.ShellCommand(command=["autoreconf -f -i"], - doStepIf=eg_requires_autoreconf + shell.ShellCommand(command=["autoreconf", "-f", "-i"], + doStepIf=eg_requires_autoreconf, + name="Bootstrap via autoreconf" ) ) -- 2.11.0