Buildbot: Enable 16 threads for macOS worker as well

This commit is contained in:
Sergey Sharybin 2020-01-30 10:24:57 +01:00
parent 81def64739
commit 306edb7477
1 changed files with 1 additions and 3 deletions

View File

@ -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)