[Opensrf-commits] r2153 - trunk/examples (dbs)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Jan 26 23:12:39 EST 2011


Author: dbs
Date: 2011-01-26 23:12:37 -0500 (Wed, 26 Jan 2011)
New Revision: 2153

Modified:
   trunk/examples/buildbot.cfg
Log:
buildbot configuration: add mail notification, explicit builder name


Modified: trunk/examples/buildbot.cfg
===================================================================
--- trunk/examples/buildbot.cfg	2011-01-26 19:55:29 UTC (rev 2152)
+++ trunk/examples/buildbot.cfg	2011-01-27 04:12:37 UTC (rev 2153)
@@ -41,7 +41,7 @@
 c['schedulers'] = []
 c['schedulers'].append(Scheduler(name="all", branch=None,
                                  treeStableTimer=None,
-                                 builderNames=["maker"]))
+                                 builderNames=["osrf-trunk-ubuntu-10.04-x86_64"]))
 
 ####### BUILDERS
 
@@ -109,7 +109,7 @@
 
 c['builders'] = []
 c['builders'].append(
-    BuilderConfig(name="maker",
+    BuilderConfig(name="osrf-trunk-ubuntu-10.04-x86_64",
       slavenames=["opensrf-slave"],
       factory=factory))
 
@@ -139,6 +139,15 @@
 )
 c['status'].append(html.WebStatus(http_port=8010, authz=authz_cfg))
 
+# Send mail when a build is broken
+from buildbot.status.mail import MailNotifier
+mn = MailNotifier(
+    fromaddr="buildbot at testing.esilibrary.com",
+    sendToInterestedUsers=False,
+    mode='problem',
+    extraRecipients=["dan at coffeecode.net"])
+c['status'].append(mn)
+
 ####### PROJECT IDENTITY
 
 # the 'projectName' string will be used to describe the project that this
@@ -155,7 +164,7 @@
 # with an externally-visible host name which the buildbot cannot figure out
 # without some help.
 
-c['buildbotURL'] = "http://localhost:8010/"
+c['buildbotURL'] = "http://testing.evergreen-ils.org/buildbot/"
 
 ####### DB URL
 



More information about the opensrf-commits mailing list