/hg/buildbot: Allow people to force a build.

mjw at icedtea.classpath.org mjw at icedtea.classpath.org
Mon Aug 8 12:38:39 PDT 2011


changeset ce2d40e0fa04 in /hg/buildbot
details: http://icedtea.classpath.org/hg/buildbot?cmd=changeset;node=ce2d40e0fa04
author: Mark Wielaard <mark at klomp.org>
date: Mon Aug 08 21:35:00 2011 +0200

	Allow people to force a build.


diffstat:

 icedtea/master.cfg |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (19 lines):

diff -r 857af5a797b9 -r ce2d40e0fa04 icedtea/master.cfg
--- a/icedtea/master.cfg	Mon Aug 08 14:01:40 2011 +0200
+++ b/icedtea/master.cfg	Mon Aug 08 21:35:00 2011 +0200
@@ -848,10 +848,14 @@
 cc_re_tuple = (r'(PR [a-z]+/|PR ?|#)(\d+)',
                r'http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=\2')
 
+# Allow people to force a build.
+from buildbot.status.web.authz import Authz
+authz = Authz(forceBuild=True)
+
 # Note http_port is local only, will be proxied by httpd running on builder.
 from buildbot.status import html
 c['status'].append(html.WebStatus(http_port=8010,
-                                  allowForce=False,
+                                  authz=authz,
                                   order_console_by_time=True,
                                   revlink=create_revlink,
                                   repositories=create_repolink,



More information about the distro-pkg-dev mailing list