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-30 12:24:57 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-01-30 12:24:57 +0300
commit306edb7477803c10b3992bf76f94fdfcfa8037f8 (patch)
tree2bc72b105b2d40d8cb1e75a949b6f9b85b7290df /build_files/buildbot
parent81def64739bf58d008df8b28b9c5c3efd284b033 (diff)
Buildbot: Enable 16 threads for macOS worker as well
Diffstat (limited to 'build_files/buildbot')
-rw-r--r--build_files/buildbot/slave_compile.py4
1 files changed, 1 insertions, 3 deletions
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)