From 5295202c2ca3ae6a57a0af0ddbd637c220760826 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Sun, 11 Oct 2015 15:35:12 +0200 Subject: Revert "Buildbot: Test enable CUDA binaries for Win32" This reverts commit 4f296138949e7aa000a1ea52646b57d640b6d563, since Cuda fails again on win32 buildbot... --- build_files/buildbot/slave_compile.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py index d30241a9e5c..ee89bc90225 100644 --- a/build_files/buildbot/slave_compile.py +++ b/build_files/buildbot/slave_compile.py @@ -52,7 +52,10 @@ 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") + else: + cmake_options.append("-DWITH_CYCLES_CUDA_BINARIES=0") # configure and make retcode = subprocess.call(['cmake', blender_dir] + cmake_options) if retcode != 0: -- cgit v1.2.3