Buildbot: Disable some unsupported features for 32bit OSX CMake slave

This commit is contained in:
Sergey Sharybin 2015-12-20 14:22:34 +05:00
parent 5a5b540356
commit 2fff2f651e
1 changed files with 3 additions and 0 deletions

View File

@ -63,6 +63,9 @@ if 'cmake' in builder:
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64')
elif builder.endswith('i386_10_6_cmake'):
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=i386')
# Some special options to disable usupported features
cmake_options.append("-DWITH_CYCLES_OSL=OFF")
cmake_options.append("-DWITH_OPENCOLLADA=OFF")
elif builder.endswith('ppc_10_6_cmake'):
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=ppc')