Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Sharybin <sergey.vfx@gmail.com>2020-01-29 15:41:04 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-01-29 15:41:04 +0300
commitb683fcb62876f345a49bf66c94781a6fa789b946 (patch)
tree91db1d0617a30737617cacdfcc17c6615a001e6d
parentaa123555d7a75c784f479b9572145f45862bcb2b (diff)
Buildbot: Increase number of compile thread for Linux Buildbot
-rw-r--r--build_files/buildbot/slave_compile.py2
1 files changed, 2 insertions, 0 deletions
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']