Buildbot: tweaks for glibc2.11 build environment

This commit is contained in:
Sergey Sharybin 2012-10-29 15:31:48 +00:00
parent 36127e1255
commit 37801c86f2
2 changed files with 12 additions and 0 deletions

View File

@ -81,6 +81,12 @@ else:
elif builder.endswith('linux_glibc27_i386_scons'):
configs = ['user-config-player-glibc27-i686.py',
'user-config-glibc27-i686.py']
if builder.endswith('linux_glibc211_x86_64_scons'):
configs = ['user-config-player-glibc211-x86_64.py',
'user-config-glibc211-x86_64.py']
elif builder.endswith('linux_glibc211_i386_scons'):
configs = ['user-config-player-glibc211-i686.py',
'user-config-glibc211-i686.py']
for config in configs:
config_fpath = os.path.join(config_dir, config)

View File

@ -63,6 +63,12 @@ if builder.find('scons') != -1:
elif builder.endswith('linux_glibc27_i386_scons'):
config = 'user-config-glibc27-i686.py'
bits = 32
if builder.endswith('linux_glibc211_x86_64_scons'):
config = 'user-config-glibc211-x86_64.py'
bits = 64
elif builder.endswith('linux_glibc211_i386_scons'):
config = 'user-config-glibc211-i686.py'
bits = 32
if config is not None:
config_fpath = os.path.join(config_dir, config)