[pypy-commit] buildbot default: try to fix 11de30c674f6

mattip pypy.commits at gmail.com
Tue Apr 19 16:47:46 EDT 2016


Author: mattip <matti.picus at gmail.com>
Branch: 
Changeset: r1000:575eedefb087
Date: 2016-04-19 23:47 +0300
http://bitbucket.org/pypy/buildbot/changeset/575eedefb087/

Log:	try to fix 11de30c674f6

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -702,9 +702,9 @@
             workdir='.'))
         self.addStep(ShellCmd(
             description="copy ctypes resource cache",
-            # the || : ensures this always succeeds, eventually remove this step
-            command=['cp', '-rv', 'pypy-c/lib_pypy/ctypes_config_cache', 'build/lib_pypy', '||', ':'],
-            haltOnFailure=True,
+            # eventually remove this step, not needed after 5.1
+            command=['cp', '-rv', 'pypy-c/lib_pypy/ctypes_config_cache', 'build/lib_pypy'],
+            haltOnFailure=False,
             workdir='.'))
         self.addStep(ShellCmd(
             description="copy cffi import libraries",


More information about the pypy-commit mailing list