[OpenSRF-GIT] OpenSRF branch master updated. 3645a2b3ccd6d2caad373a55b262731b7e6cc825
Evergreen Git
git at git.evergreen-ils.org
Mon Apr 23 13:45:43 EDT 2012
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "OpenSRF".
The branch, master has been updated
via 3645a2b3ccd6d2caad373a55b262731b7e6cc825 (commit)
from 3dab2706d42a93f7a615862d70be254313536616 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 3645a2b3ccd6d2caad373a55b262731b7e6cc825
Author: Dan Scott <dscott at laurentian.ca>
Date: Mon Apr 23 13:45:14 2012 -0400
Name the bootstrapping steps in buildbot
Signed-off-by: Dan Scott <dscott at laurentian.ca>
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"
)
)
-----------------------------------------------------------------------
Summary of changes:
examples/buildbot.cfg | 16 ++++++++++------
1 files changed, 10 insertions(+), 6 deletions(-)
hooks/post-receive
--
OpenSRF
More information about the opensrf-commits
mailing list