Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-01-30 15:05:43 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-01-30 15:32:22 +0300
commit8285a12f4ed40901ba191a9b5b237ebdeab295c4 (patch)
tree14de721404be6632f697f18a9e56ab8dd611f217 /build_files/buildbot
parent6dcb4c9b4f5c9840e09dc184ea5623ab922523b6 (diff)
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.
Diffstat (limited to 'build_files/buildbot')
-rw-r--r--build_files/buildbot/slave_pack.py4
1 files changed, 1 insertions, 3 deletions
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"