Author: David Schneider <[email protected]>
Branch:
Changeset: r853:60936febc1bc
Date: 2013-09-03 19:31 +0200
http://bitbucket.org/pypy/buildbot/changeset/60936febc1bc/
Log: reset permissions of file being copied around
diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -394,6 +394,11 @@
haltOnFailure=True,
))
+ self.addStep(ShellCmd(
+ description="reset permissions",
+ command=['chmod', 'u+rw', '-R', 'build/include'],
+ haltOnFailure=True,
+ workdir='.'))
# copy pypy-c to the expected location within the pypy source checkout
self.addStep(ShellCmd(
description="move pypy-c",
@@ -408,6 +413,11 @@
workdir='.'))
# copy ctypes_resource_cache generated during translation
self.addStep(ShellCmd(
+ description="reset permissions",
+ command=['chmod', 'u+rw', '-R', 'build/lib_pypy'],
+ haltOnFailure=True,
+ workdir='.'))
+ self.addStep(ShellCmd(
description="move ctypes resource cache",
command=['cp', '-rv', 'pypy-c/lib_pypy/ctypes_config_cache',
'build/lib_pypy'],
haltOnFailure=True,
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit