Buildbot: Disable CUDA binaries on win32

They started to give issues as well, need some dedicated time to look
into the issues.
This commit is contained in:
Sergey Sharybin 2015-08-27 11:42:49 +02:00
parent c5f9255eed
commit 8cd4966722

@ -52,7 +52,8 @@ if 'cmake' in builder:
cmake_options.append(['-G', '"Visual Studio 12 2013"'])
cmake_options.append("-C../blender.git/build_files/cmake/config/blender_full.cmake")
cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=1")
if 'win32' not in builder:
cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=1")
# configure and make
retcode = subprocess.call(['cmake', blender_dir] + cmake_options)
if retcode != 0: