From: Dan Scott Date: Mon, 23 Apr 2012 17:45:14 +0000 (-0400) Subject: Name the bootstrapping steps in buildbot X-Git-Tag: osrf_rel_2_2_0-alpha~58 X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=3645a2b3ccd6d2caad373a55b262731b7e6cc825;p=OpenSRF.git Name the bootstrapping steps in buildbot Signed-off-by: Dan Scott --- 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" ) )