From 2bdd580e2bcc6660b073b6853dc1544d5c68a6fd 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 52a2e8e..40b7b72 100644 --- a/examples/buildbot.cfg +++ b/examples/buildbot.cfg @@ -190,13 +190,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" ) ) @@ -254,13 +256,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