Buildbot: Fix undefined architecture string for CentOS

This commit is contained in:
2019-06-26 19:40:46 +02:00
parent b98428e046
commit a7e32dbcb0

View File

@@ -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