[pypy-svn] r58379 - pypy/build/bot2/pypybuildbot

pedronis at codespeak.net pedronis at codespeak.net
Tue Sep 23 15:16:23 CEST 2008


Author: pedronis
Date: Tue Sep 23 15:16:22 2008
New Revision: 58379

Modified:
   pypy/build/bot2/pypybuildbot/master.py
   pypy/build/bot2/pypybuildbot/steps.py
Log:
(iko, pedronis)

the configuration as it looks right now on wyvern



Modified: pypy/build/bot2/pypybuildbot/master.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/master.py	(original)
+++ pypy/build/bot2/pypybuildbot/master.py	Tue Sep 23 15:16:22 2008
@@ -27,8 +27,7 @@
 
     'change_source': [],
     'schedulers': [Nightly("nightly",
-                           ["pypy-own-linux", "pypy-own-other-linux",
-                            "pypy-own-win"], hour=19)],
+                           ["own-linux-x86-32"], hour=19)], # xxx time
     'status': [status],
 
     'slaves': [BuildSlave(name, password)
@@ -36,23 +35,14 @@
                in passwords.iteritems()],
 
     'builders': [
-                  {"name": "pypy-own-linux",
-                   "slavenames": ["vitaly"],
-                   "builddir": "pypy-own-linux",
+                  {"name": "own-linux-x86-32",
+                   "slavenames": ["wyvern"],
+                   "builddir": "own-linux-x86-32",
                    "factory": pypyOwnTestFactory
                   },
-                  {"name": "pypy-own-other-linux",
-                   "slavenames": ["fido"],
-                   "builddir": "pypy-own-other-linux",
-                   "factory": pypyOwnTestFactory
-                  },
-                  {"name": "pypy-own-win",
-                   "slavenames": ['ebgoc'],
-                   "builddir": "pypy-own-win",
-                   "factory": pypyOwnTestFactoryWin}
                 ],
 
-    'buildbotURL': 'http://localhost:%d/' % (httpPortNumber,),
+    'buildbotURL': 'http://wyvern.cs.uni-duesseldorf.de:%d/' % (httpPortNumber,),
     'projectURL': 'http://codespeak.net/pypy/',
     'projectName': 'PyPy'}
 

Modified: pypy/build/bot2/pypybuildbot/steps.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/steps.py	(original)
+++ pypy/build/bot2/pypybuildbot/steps.py	Tue Sep 23 15:16:22 2008
@@ -61,7 +61,7 @@
         self.addStep(shell.ShellCommand(
             description="pytest",
             command=["python", "testrunner/runner.py",
-                     "--logfile=testrun.log", "--dry-run",
+                     "--logfile=testrun.log",
                      "--config=pypy/testrunner_cfg.py",
                      "--config=~/machine_cfg.py",
                      "--root=pypy"],



More information about the Pypy-commit mailing list