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