[Bf-blender-cvs] [8cd4966] master: Buildbot: Disable CUDA binaries on win32

Sergey Sharybin noreply at git.blender.org
Thu Aug 27 11:46:03 CEST 2015


Commit: 8cd496672228507922172f3a20b65b59c1e42b0b
Author: Sergey Sharybin
Date:   Thu Aug 27 11:42:49 2015 +0200
Branches: master
https://developer.blender.org/rB8cd496672228507922172f3a20b65b59c1e42b0b

Buildbot: Disable CUDA binaries on win32

They started to give issues as well, need some dedicated time to look
into the issues.

===================================================================

M	build_files/buildbot/slave_compile.py

===================================================================

diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index d30241a..87beca2 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:




More information about the Bf-blender-cvs mailing list