[pypy-svn] r58750 - in pypy/build/bot2: . wyvern-html

hpk at codespeak.net hpk at codespeak.net
Tue Oct 7 15:30:20 CEST 2008


Author: hpk
Date: Tue Oct  7 15:30:20 2008
New Revision: 58750

Added:
   pypy/build/bot2/wyvern-html/
   pypy/build/bot2/wyvern-html/buildbot.css
      - copied unchanged from r58739, pypy/build/bot2/wyvern_buildbot.css
   pypy/build/bot2/wyvern-html/index.html
      - copied unchanged from r58739, pypy/build/bot2/wyvern_index.html
   pypy/build/bot2/wyvern-html/robots.txt
      - copied unchanged from r58739, pypy/build/bot2/wyvern_robots.txt
Removed:
   pypy/build/bot2/wyvern_buildbot.css
   pypy/build/bot2/wyvern_index.html
   pypy/build/bot2/wyvern_robots.txt
Modified:
   pypy/build/bot2/master.cfg
Log:
(pedronis,hpk) move html files into own dir, add debugging env for image


Modified: pypy/build/bot2/master.cfg
==============================================================================
--- pypy/build/bot2/master.cfg	(original)
+++ pypy/build/bot2/master.cfg	Tue Oct  7 15:30:20 2008
@@ -1,4 +1,4 @@
-import sys, os
+import sys, os, socket
 # checkout bot2 in the home dir of the master
 sys.path.append(os.path.expanduser('~/bot2/'))
 from pypybuildbot.util import load
@@ -7,7 +7,12 @@
 httpPortNumber = 8099
 
 # slavename -> password
-passwords = load('slaveinfo').passwords
-
+slaveinfo = load('slaveinfo')
+passwords = slaveinfo.passwords
 
 execfile(os.path.expanduser('~/bot2/pypybuildbot/master.py'))
+
+if socket.gethostname() != "wyvern": # for debugging
+    for builderdict in BuildmasterConfig['builders']:
+        builderdict["slavenames"] = ['localhost']
+    BuildmasterConfig['buildbotURL'] = "http://localhost:%d/" % (httpPortNumber)



More information about the Pypy-commit mailing list