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

fijal at codespeak.net fijal at codespeak.net
Thu Mar 18 18:39:48 CET 2010


Author: fijal
Date: Thu Mar 18 18:39:47 2010
New Revision: 72394

Modified:
   pypy/build/bot2/pypybuildbot/builds.py
Log:
According to exarkun, higher blocksize is required to avoid problems


Modified: pypy/build/bot2/pypybuildbot/builds.py
==============================================================================
--- pypy/build/bot2/pypybuildbot/builds.py	(original)
+++ pypy/build/bot2/pypybuildbot/builds.py	Thu Mar 18 18:39:47 2010
@@ -112,9 +112,10 @@
             # upload nightly build, if we're running jit tests
             nightly = os.path.expanduser('~/nightly/pypy-c-jit-%(got_revision)s-' + platform)
             pypy_c_rel = 'build/pypy/translator/goal/pypy-c'
-            #self.addStep(transfer.FileUpload(slavesrc=pypy_c_rel,
-            #                                 masterdest=WithProperties(nightly),
-            #                                 workdir='.'))
+            self.addStep(transfer.FileUpload(slavesrc=pypy_c_rel,
+                                             masterdest=WithProperties(nightly),
+                                             workdir='.',
+                                             blocksize=100*1024))
             self.addStep(ShellCmd(
                 description="pypyjit tests",
                 command=["python", "pypy/test_all.py",



More information about the Pypy-commit mailing list