From 306edb7477803c10b3992bf76f94fdfcfa8037f8 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Thu, 30 Jan 2020 10:24:57 +0100 Subject: [PATCH] Buildbot: Enable 16 threads for macOS worker as well --- build_files/buildbot/slave_compile.py | 4 +--- 1 file changed, 1 insertion(+), 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)