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

xoraxax at codespeak.net xoraxax at codespeak.net
Fri Mar 12 21:50:17 CET 2010


Author: xoraxax
Date: Fri Mar 12 21:50:15 2010
New Revision: 72186

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
Add pscyo to JITBenchmark Build Factory.

Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Fri Mar 12 21:50:15 2010
@@ -156,7 +156,18 @@
         self.addStep(transfer.FileUpload(slavesrc="benchmarks/result.json",
                                          masterdest=WithProperties(resfile),
                                          workdir="."))
-        
+
+        self.addStep(ShellCmd(
+            description="run benchmarks on top of python with psyco",
+            command=["python", "runner.py", '--output-filename', 'result.json',
+                    '--pypy-c', 'psyco/python_with_psyco.sh',
+                     '--revision', WithProperties('%(got_revision)s'),
+                     '--upload', '--force-host', 'bigdog',
+                     '--branch', WithProperties('%(branch)s'),
+                     ],
+            workdir='./benchmarks',
+            haltOnFailure=True))
+
         self.addStep(ShellCmd(
             description="run benchmarks 1",
             command=["python", "pypy/translator/benchmark/jitbench.py",



More information about the Pypy-commit mailing list