Author: mattip <[email protected]>
Branch: 
Changeset: r955:3275430ea6da
Date: 2015-08-16 21:11 +0300
http://bitbucket.org/pypy/buildbot/changeset/3275430ea6da/

Log:    add cffi import library copy step to TranslatedTest

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -666,10 +666,15 @@
             haltOnFailure=True,
             workdir='.'))
         self.addStep(ShellCmd(
-            description="move ctypes resource cache",
+            description="copy ctypes resource cache",
             command=['cp', '-rv', 'pypy-c/lib_pypy/ctypes_config_cache', 
'build/lib_pypy'],
             haltOnFailure=True,
             workdir='.'))
+        self.addStep(ShellCmd(
+            description="copy cffi import libraries"
+            command=['cp', '-rv', 'pypy-c/lib_pypy/*.so', 'build/lib_pypy'],
+            haltOnFailure=True,
+            workdir='.'))
 
         add_translated_tests(self, prefix, platform, app_tests, lib_python, 
pypyjit)
 
diff --git a/bot2/pypybuildbot/master.py b/bot2/pypybuildbot/master.py
--- a/bot2/pypybuildbot/master.py
+++ b/bot2/pypybuildbot/master.py
@@ -279,7 +279,7 @@
         ], branch=None, hour=1, minute=0),
 
         Triggerable("NUMPY64_scheduler", [
-            NUMPY_64,                  # on tannit64, uses 1 core, takes about 
15min.
+            NUMPY_64,                  # on tannit64, uses 1 core, takes about 
5min.
         ]),
 
         Triggerable("NUMPYWIN_scheduler", [
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to