Changed the year in the copyright banner(s) to 2019.
[citadel.git] / buildbot / master.cfg
index 3864c6c5e654de5ad658b76c4e2c4823b16754b1..776f79784c89e03ac27dbf0699f5e716e4717703 100644 (file)
@@ -165,8 +165,8 @@ f1.addStep(shell.ShellCommand(
         command=["./configure"],
         workdir="build/citadel",
         env={
-            'CFLAGS' : "-I ../libcitadel/lib",
-            'LDFLAGS' : "-L../libcitadel/.libs"
+            'CFLAGS' : "-I $PWD/full/build/libcitadel/lib",
+            'LDFLAGS' : "-L${PWD}/full/build/libcitadel/.libs"
             },
         description=["Configuring citadel"],
         descriptionDone=["done"],
@@ -203,8 +203,8 @@ f1.addStep(shell.ShellCommand(
         command=["./configure"],
         workdir="build/webcit",
         env={
-            'CFLAGS' : "-I ../libcitadel/lib",
-            'LDFLAGS' : "-L../libcitadel/.libs"
+            'CFLAGS' : "-I ${PWD}/full/build/libcitadel/lib",
+            'LDFLAGS' : "-L${PWD}/full/build/libcitadel/.libs"
             },
         description=["Configuring webcit"],
         descriptionDone=["done"],
@@ -345,4 +345,19 @@ c['projectURL'] = "http://www.citadel.org/"
 # with an externally-visible host name which the buildbot cannot figure out
 # without some help.
 
-c['buildbotURL'] = "http://192.168.3.2:8010/"
+c['buildbotURL'] = "http://dothebart.dyndns.org/buildbot/"
+
+from buildbot.status import words
+c['status'].append(
+    words.IRC(
+        host="irc.freenode.net", 
+        nick="bb-citadel",
+        channels=["#citadel"],
+        password="mysecretpassword",
+        notify_events={
+            'exception': 1,
+            'successToFailure': 1,
+            'failureToSuccess': 1
+            }
+        ))