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

fijal at codespeak.net fijal at codespeak.net
Fri Jan 15 20:44:57 CET 2010


Author: fijal
Date: Fri Jan 15 20:44:56 2010
New Revision: 70622

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
* An attempt to fix directories
* Temporarily copy file instead of translating, saves a bit of time


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Fri Jan 15 20:44:56 2010
@@ -60,8 +60,9 @@
         kw['targetArgs'] = targetArgs
         kw['timeout'] = 3600
         ShellCmd.__init__(self, workdir, *a, **kw)
-        self.command = (self.command + translationArgs +
-                        [self.translationTarget] + targetArgs)               
+        #self.command = (self.command + translationArgs +
+        #                [self.translationTarget] + targetArgs)
+        self.command = ['cp', '/tmp/pypy-c', '.']
 
 # ________________________________________________________________
 
@@ -162,7 +163,7 @@
         self.addStep(ShellCmd(description="checkout benchmarks",
             command=['svn', 'co', 'http://codespeak.net/svn/pypy/benchmarks',
                      'benchmarks'],
-            workdir='./'))
+            workdir='../'))
         self.addStep(Translate(['-Ojit'], []))
         self.addStep(ShellCmd(
             description="run more benchmarks",
@@ -171,7 +172,7 @@
             workdir='benchmarks'))
         self.addStep(transfer.FileUpload(slavesrc="benchmarks/result.json",
                 masterdest=WithProperties("~/bench_results/%(revision)s.json"),
-                                         workdir="./"))
+                                         workdir="../"))
         self.addStep(ShellCmd(
             descritpion="run benchmarks",
             command=["python", "pypy/translator/benchmark/jitbench.py",



More information about the Pypy-commit mailing list