[Bf-blender-cvs] [306edb74778] blender-v2.82-release: Buildbot: Enable 16 threads for macOS worker as well

Sergey Sharybin noreply at git.blender.org
Thu Jan 30 10:25:19 CET 2020


Commit: 306edb7477803c10b3992bf76f94fdfcfa8037f8
Author: Sergey Sharybin
Date:   Thu Jan 30 10:24:57 2020 +0100
Branches: blender-v2.82-release
https://developer.blender.org/rB306edb7477803c10b3992bf76f94fdfcfa8037f8

Buildbot: Enable 16 threads for macOS worker as well

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

M	build_files/buildbot/slave_compile.py

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

diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 397bd3579a3..65cadea587b 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -102,10 +102,8 @@ def cmake_build(builder):
     # a clean build of buildbot, especially with regression tests enabled.
     if builder.platform == 'win':
         command = ['cmake', '--build', '.', '--target', 'install', '--config', 'Release']
-    elif builder.platform == 'linux':
-        command = ['make', '-s', '-j16', 'install']
     else:
-        command = ['make', '-s', '-j2', 'install']
+        command = ['make', '-s', '-j16', 'install']
 
     print("CMake build:")
     buildbot_utils.call(builder.command_prefix + command)



More information about the Bf-blender-cvs mailing list