Author: David Schneider <david.schnei...@picle.org>
Branch: 
Changeset: r922:b699815f9193
Date: 2014-11-14 14:53 +0100
http://bitbucket.org/pypy/buildbot/changeset/b699815f9193/

Log:    Copy libpypy-c.so to pypy checkout for translated test build

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -564,6 +564,13 @@
             command=command,
             haltOnFailure=True,
             workdir='.'))
+        # copy libpypy-c.so to the expected location within the pypy source 
checkout, if available
+        command = 'if [ -e pypy-c/bin/libpypy-c.so ]; then cp -v 
pypy-c/bin/libpypy-c.so build/pypy/goal/; fi;'
+        self.addStep(ShellCmd(
+            description="move libpypy-c.so",
+            command=command,
+            haltOnFailure=True,
+            workdir='.'))
         # copy generated and copied header files to build/include
         self.addStep(ShellCmd(
             description="move header files",
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to