From c25a910e4ec090fd97529973b55ddbaf95d4ab42 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 14 Nov 2019 10:37:16 +0100 Subject: Buildbot: Explicitly disable code signer on Linux and macOS The script requires Python 3.7 as a very minimum, and CentOS is only 3.6. On macOC there was an access to a None object, due to missing implementation of code signer on this platform. --- build_files/buildbot/slave_compile.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py index f8bab19a1e9..1abbb80087b 100644 --- a/build_files/buildbot/slave_compile.py +++ b/build_files/buildbot/slave_compile.py @@ -29,14 +29,14 @@ def get_cmake_options(builder): config_file = "build_files/cmake/config/blender_release.cmake" options = ['-DCMAKE_BUILD_TYPE:STRING=Release', - '-DWITH_GTESTS=ON', - '-DPOSTINSTALL_SCRIPT:PATH=' + post_install_script] + '-DWITH_GTESTS=ON'] if builder.platform == 'mac': options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64') options.append('-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9') elif builder.platform == 'win': options.extend(['-G', 'Visual Studio 15 2017 Win64']) + options.extend(['-DPOSTINSTALL_SCRIPT:PATH=' + post_install_script]) elif builder.platform == 'linux': config_file = "build_files/buildbot/config/blender_linux.cmake" -- cgit v1.2.3