[Bf-blender-cvs] [c25a910e4ec] blender-v2.81-release: Buildbot: Explicitly disable code signer on Linux and macOS

Sergey Sharybin noreply at git.blender.org
Thu Nov 14 10:40:34 CET 2019


Commit: c25a910e4ec090fd97529973b55ddbaf95d4ab42
Author: Sergey Sharybin
Date:   Thu Nov 14 10:37:16 2019 +0100
Branches: blender-v2.81-release
https://developer.blender.org/rBc25a910e4ec090fd97529973b55ddbaf95d4ab42

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.

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

M	build_files/buildbot/slave_compile.py

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

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"



More information about the Bf-blender-cvs mailing list