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>2019-06-26 20:40:46 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-06-26 20:40:46 +0300
commita7e32dbcb08c452fd170fcc71022278bb7985e72 (patch)
tree08a143ffde08d7ea11110347e4a2ac3ad0c4399b /build_files
parentb98428e04659935488d32ba4c0bf494c90cb8011 (diff)
Buildbot: Fix undefined architecture string for CentOS
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_pack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_pack.py b/build_files/buildbot/slave_pack.py
index 945b7556ed6..b29b078ca85 100644
--- a/build_files/buildbot/slave_pack.py
+++ b/build_files/buildbot/slave_pack.py
@@ -137,11 +137,11 @@ if builder.find('cmake') != -1:
blender_glibc = builder.split('_')[1]
command_prefix = []
bits = 64
+ blender_arch = 'x86_64'
if blender_glibc == 'glibc224':
if builder.endswith('x86_64_cmake'):
chroot_name = 'buildbot_stretch_x86_64'
- blender_arch = 'x86_64'
elif builder.endswith('i686_cmake'):
chroot_name = 'buildbot_stretch_i686'
bits = 32