[Bf-blender-cvs] [8285a12f4ed] blender-v2.82-release: Buildbot: Make archive naming shorter and cleaner

Sergey Sharybin noreply at git.blender.org
Thu Jan 30 13:32:35 CET 2020


Commit: 8285a12f4ed40901ba191a9b5b237ebdeab295c4
Author: Sergey Sharybin
Date:   Thu Jan 30 13:05:43 2020 +0100
Branches: blender-v2.82-release
https://developer.blender.org/rB8285a12f4ed40901ba191a9b5b237ebdeab295c4

Buildbot: Make archive naming shorter and cleaner

It changes name to be blender-<version>-linux64.

Since CentOS is used as a base host for builds there is no real need
in specifying libc version. Is unlikely anything older could be used
anyway.

Also make bitness to be the same as windows. It is something what
users will read easier.

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

M	build_files/buildbot/slave_pack.py

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

diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index bbacedca0ce..f47cfe0347e 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -160,8 +160,6 @@ def pack_linux(builder):
     blender_executable = os.path.join(builder.install_dir, 'blender')
 
     info = buildbot_utils.VersionInfo(builder)
-    blender_glibc = builder.name.split('_')[1]
-    blender_arch = 'x86_64'
 
     # Strip all unused symbols from the binaries
     print("Stripping binaries...")
@@ -172,7 +170,7 @@ def pack_linux(builder):
     buildbot_utils.call(builder.command_prefix + ['find', py_target, '-iname', '*.so', '-exec', 'strip', '-s', '{}', ';'])
 
     # Construct package name
-    platform_name = 'linux-' + blender_glibc + '-' + blender_arch
+    platform_name = 'linux64'
     package_name = get_package_name(builder, platform_name)
     package_filename = package_name + ".tar.xz"



More information about the Bf-blender-cvs mailing list