From 8cd496672228507922172f3a20b65b59c1e42b0b Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 27 Aug 2015 11:42:49 +0200 Subject: Buildbot: Disable CUDA binaries on win32 They started to give issues as well, need some dedicated time to look into the issues. --- build_files/buildbot/slave_compile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py index d30241a9e5c..87beca28a66 100644 --- a/build_files/buildbot/slave_compile.py +++ b/build_files/buildbot/slave_compile.py @@ -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: -- cgit v1.2.3