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:25:36 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-01-30 12:25:36 +0300
commit332f310b81c679ba18def90f2341b64927f31572 (patch)
tree9121073113391ff851d3c383338762e652f9b856 /build_files
parentbae2cb730aa694bd3063550e8159f377334b50f3 (diff)
parent306edb7477803c10b3992bf76f94fdfcfa8037f8 (diff)
Merge branch 'blender-v2.82-release'
Diffstat (limited to 'build_files')
-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)