[zorg] r178183 - Move the lab.llvm.org phased builders to be in production mode.
Michael Gottesman
mgottesman at apple.com
Wed Mar 27 14:32:57 PDT 2013
Author: mgottesman
Date: Wed Mar 27 16:32:57 2013
New Revision: 178183
URL: http://llvm.org/viewvc/llvm-project?rev=178183&view=rev
Log:
Move the lab.llvm.org phased builders to be in production mode.
I also added the path to the llvm_authors_file and changed the
from_email from llvm.buildmaster at lab.llvm.org to
llvmlab-buildmaster at lab.llvm.org to make it clear that the email is from
llvmlab and not from the older buildbot master.
Modified:
zorg/trunk/buildbot/llvmlab/master/config/local.cfg
zorg/trunk/buildbot/llvmlab/master/config/status.py
Modified: zorg/trunk/buildbot/llvmlab/master/config/local.cfg
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/llvmlab/master/config/local.cfg?rev=178183&r1=178182&r2=178183&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/local.cfg (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/local.cfg Wed Mar 27 16:32:57 2013
@@ -1,18 +1,23 @@
[Master Options]
# Set when the master is running in a production environment.
-is_production=False
+is_production=true
+
+# Buildbot configuration parameters.
rsync_user=buildmaster
master_name=lab.llvm.org
master_url=http://lab.llvm.org:8013
master_protocol=http
# Email address for sender of buildbot notifications.
-from_email=llvm.buildmaster at lab.llvm.org
+from_email=llvmlab-buildmaster at lab.llvm.org
# Someone who is automatically CC'ed on all failure messages and on
# failed email lookups.
default_email=david_dean at apple.com
+# Path to the LLVM authors file.
+llvm_authors_path=/Users/buildmaster/llvmauthors.cfg
+
# Debugging options.
debug_password=
enable_manhole=false
Modified: zorg/trunk/buildbot/llvmlab/master/config/status.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/llvmlab/master/config/status.py?rev=178183&r1=178182&r2=178183&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/status.py (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/status.py Wed Mar 27 16:32:57 2013
@@ -17,7 +17,8 @@ def get_status_targets(standard_builders
# Check whether we are in testing mode, if so, just add minimal and verbose
# status clients.
- if True:
+ is_production = set_config_option('Master Options', 'is_production', False)
+ if not is_production:
return [
buildbot.status.html.WebStatus(
http_port = 8013, allowForce = True),
More information about the llvm-commits
mailing list