[Bf-blender-cvs] [a7e32dbcb08] master: Buildbot: Fix undefined architecture string for CentOS

Sergey Sharybin noreply at git.blender.org
Wed Jun 26 19:41:00 CEST 2019


Commit: a7e32dbcb08c452fd170fcc71022278bb7985e72
Author: Sergey Sharybin
Date:   Wed Jun 26 19:40:46 2019 +0200
Branches: master
https://developer.blender.org/rBa7e32dbcb08c452fd170fcc71022278bb7985e72

Buildbot: Fix undefined architecture string for CentOS

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

M	build_files/buildbot/slave_pack.py

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

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



More information about the Bf-blender-cvs mailing list