Default is to do a Release build for all trivial 64-bit buildbot builders

Signed-off-by: Ian Bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian Bell
2015-02-18 19:58:55 -05:00
parent 9863bd6d86
commit b6912e1e1c

View File

@@ -978,17 +978,15 @@ for platform in ['OSX', 'linux', 'windows']:
for wrapper in ['Java','Csharp','Octave','PHP','64BIT_SHARED_LIBRARY','STATIC_LIBRARY','MATHEMATICA','VBDOTNET']:
if wrapper == 'PHP' and platform != 'linux': continue # only build PHP on linux
if wrapper == 'VBDOTNET' and not platform.startswith('windows'): continue # only build VB.net on windows
ctest_args, cmake_args, build_args = [], [], []
ctest_args, cmake_args, build_args = [], [], ['--config','Release']
if platform.startswith('windows'):
ctest_args = ['-C', 'Release']
if wrapper == 'Octave':
cmake_args = ['-G', '"MinGW Makefiles"']
elif wrapper == 'VBDOTNET':
cmake_args = ['-G', '"Visual Studio 11 2012 Win64"']
build_args = ['--config','Release']
else:
cmake_args = ['-G', '"Visual Studio 10 2010 Win64"']
build_args = ['--config','Release']
c['builders'].append(
BuilderConfig(name=wrapper + "-" + platform,
slavenames=[platform + "-slave"],