[Bf-blender-cvs] [736ce9c] master: Buildbot: Attempt to resolve wrong path to the buildbot_upload.zip

Sergey Sharybin noreply at git.blender.org
Wed Dec 2 19:40:21 CET 2015


Commit: 736ce9c8fd5b739f1a9572a65e32ced2b68b84b2
Author: Sergey Sharybin
Date:   Wed Dec 2 23:39:08 2015 +0500
Branches: master
https://developer.blender.org/rB736ce9c8fd5b739f1a9572a65e32ced2b68b84b2

Buildbot: Attempt to resolve wrong path to the buildbot_upload.zip

It is expected to be in the build folder for the cmake.

Ideally it should be build/<builder> or install/<builder> but that's a bit more
involved change. Will look into it later.

===================================================================

M	build_files/buildbot/slave_pack.py

===================================================================

diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index 0e5942f..6b12c13 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -159,7 +159,7 @@ else:
         os.rename(result_file, "{}.zip".format(builderified_name))
         # create zip file
         try:
-            upload_zip = "buildbot_upload.zip"
+            upload_zip = "../buildbot_upload.zip"
             if os.path.exists(upload_zip):
                 os.remove(upload_zip)
             z = zipfile.ZipFile(upload_zip, "w", compression=zipfile.ZIP_STORED)




More information about the Bf-blender-cvs mailing list