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

xoraxax at codespeak.net xoraxax at codespeak.net
Sat Mar 13 19:04:53 CET 2010


Author: xoraxax
Date: Sat Mar 13 19:04:52 2010
New Revision: 72205

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
Move Psyco step to the beginning.

Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Sat Mar 13 19:04:52 2010
@@ -127,6 +127,18 @@
             command=['svn', 'co', 'http://codespeak.net/svn/pypy/benchmarks',
                      'benchmarks'],
             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(Translate(['-Ojit'], []))
         self.addStep(ShellCmd(
             description="run more benchmarks on top of pypy-c-jit",
@@ -157,16 +169,7 @@
                                          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",



More information about the Pypy-commit mailing list