[pypy-commit] buildbot default: download nightly build to a file called pypy_build.(tar.gz|zip)

bivab noreply at buildbot.pypy.org
Fri Sep 14 11:03:46 CEST 2012


Author: David Schneider <david.schneider at picle.org>
Branch: 
Changeset: r701:afda91ee2deb
Date: 2012-09-14 11:03 +0200
http://bitbucket.org/pypy/buildbot/changeset/afda91ee2deb/

Log:	download nightly build to a file called pypy_build.(tar.gz|zip)

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -443,7 +443,7 @@
         self.addStep(PyPyDownload(
             basename=name,
             mastersrc='~/nightly',
-            slavedest=WithProperties(name),
+            slavedest='pypy_build' + extension,
             workdir='pypy-c'))
 
         # extract downloaded file
@@ -452,7 +452,7 @@
         else:
             self.addStep(ShellCmd(
                 description="decompress pypy-c",
-                command=['tar', '--extract', WithProperties('--file='+name), '--strip-components=1', '--directory=.'],
+                command=['tar', '--extract', '--file=pypy_build'+ extension, '--strip-components=1', '--directory=.'],
                 workdir='pypy-c'))
 
         # copy pypy-c to the expected location within the pypy source checkout  


More information about the pypy-commit mailing list