Buildbot: Disable CUDA binaries for 32bit OSX slave

Funny thing, 32bit OSX slave was always building 64bit CUDA kernels
and nobody never noticed this..
This commit is contained in:
Sergey Sharybin 2015-12-20 15:19:02 +05:00
parent 3566d0d3a6
commit f01714506a
1 changed files with 1 additions and 0 deletions

View File

@ -62,6 +62,7 @@ if 'cmake' in builder:
if builder.endswith('x86_64_10_6_cmake'):
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64')
elif builder.endswith('i386_10_6_cmake'):
build_cubins = False
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=i386')
# Some special options to disable usupported features
cmake_options.append("-DWITH_CYCLES_OSL=OFF")