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

fijal at codespeak.net fijal at codespeak.net
Thu Apr 16 21:14:08 CEST 2009


Author: fijal
Date: Thu Apr 16 21:14:07 2009
New Revision: 64184

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
copy the resulting file onto codespeak


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Thu Apr 16 21:14:07 2009
@@ -197,16 +197,19 @@
         self.addStep(Translate(["--platform", "maemo", "--gc=hybrid", "-Omem"],
                                [], workdir=workdir))
         
+        #self.addStep(ShellCmd(
+        #    description="app-level (-A) test",
+        #    command=["python", "testrunner/scratchbox_runner.py",
+        #             "--logfile=pytest-A.log",
+        #             "--config=pypy/pytest-A.cfg",
+        #             "--root=pypy", "--timeout=1800"],
+        #    logfiles={'pytestLog': 'pytest-A.log'},
+        #    timeout = 4000,
+        #    workdir = WORKDIR,
+        #    env={"PYTHONPATH": ['.']}))
         self.addStep(ShellCmd(
-            description="app-level (-A) test",
-            command=["python", "testrunner/scratchbox_runner.py",
-                     "--logfile=pytest-A.log",
-                     "--config=pypy/pytest-A.cfg",
-                     "--root=pypy", "--timeout=1800"],
-            logfiles={'pytestLog': 'pytest-A.log'},
-            timeout = 4000,
-            workdir = WORKDIR,
-            env={"PYTHONPATH": ['.']}))
+            description="copy build",
+            command=["scp", "pypy-c", "fijal at codespeak.net:builds/pypy-c-scratchbox"], workdir = WORKDIR))
 
 class PyPyJITTranslatedTestFactory(factory.BuildFactory):
     def __init__(self, *a, **kw):



More information about the Pypy-commit mailing list