[Bf-blender-cvs] [b683fcb6287] blender-v2.82-release: Buildbot: Increase number of compile thread for Linux Buildbot

Sergey Sharybin noreply at git.blender.org
Wed Jan 29 13:41:30 CET 2020


Commit: b683fcb62876f345a49bf66c94781a6fa789b946
Author: Sergey Sharybin
Date:   Wed Jan 29 13:41:04 2020 +0100
Branches: blender-v2.82-release
https://developer.blender.org/rBb683fcb62876f345a49bf66c94781a6fa789b946

Buildbot: Increase number of compile thread for Linux Buildbot

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

M	build_files/buildbot/slave_compile.py

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

diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 1abbb80087b..397bd3579a3 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -102,6 +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']



More information about the Bf-blender-cvs mailing list