aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@gmail.com>2018-02-24 12:52:14 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@gmail.com>2018-02-24 12:52:14 +0000
commitfc7aafa5d7f1e146eb2fb95ca207d85780908dc8 (patch)
tree4c28c011231d6793582f78a64000313cb9b0ed49
parentb18670511d505913ef52d34dd4ff4857823528ff (diff)
[zorg] Update testsuite parallelism settings for Linaro AArch64 builders.
Summary: We have moved production bots from 8-core to 64-core hardware, so update testsuite parallelism settings accordingly. The 8-core machines are still online and connected to silent buildmaster. Reviewers: gkistanova, rovka, rengolin, kristof.beyls Reviewed By: kristof.beyls Subscribers: srhines, kristof.beyls, llvm-commits Differential Revision: https://reviews.llvm.org/D43612 git-svn-id: https://llvm.org/svn/llvm-project/zorg/trunk@326031 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--buildbot/osuosl/master/config/builders.py14
1 files changed, 6 insertions, 8 deletions
diff --git a/buildbot/osuosl/master/config/builders.py b/buildbot/osuosl/master/config/builders.py
index 28ec6858..ebd49b78 100644
--- a/buildbot/osuosl/master/config/builders.py
+++ b/buildbot/osuosl/master/config/builders.py
@@ -357,7 +357,7 @@ def _get_clang_builders():
useTwoStage=False,
runTestSuite=True,
testsuite_flags=['--cppflags', '-mcpu=cortex-a57',
- '--threads=8', '--build-threads=8'],
+ '--threads=64', '--build-threads=64'],
extra_cmake_args=["-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"],
)},
@@ -376,7 +376,7 @@ def _get_clang_builders():
useTwoStage=True,
runTestSuite=True,
testsuite_flags=['--cppflags', '-mcpu=cortex-a57 -fuse-ld=lld',
- '--threads=8', '--build-threads=8'],
+ '--threads=64', '--build-threads=64'],
extra_cmake_args=["-DCMAKE_C_FLAGS='-mcpu=cortex-a57'",
"-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57'",
"-DLLVM_TARGETS_TO_BUILD='ARM;AArch64;X86'",
@@ -396,7 +396,7 @@ def _get_clang_builders():
useTwoStage=False,
runTestSuite=True,
testsuite_flags=['--cppflags', '-O0',
- '--threads=8', '--build-threads=8'],
+ '--threads=64', '--build-threads=64'],
extra_cmake_args=["-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"],
)},
@@ -1129,7 +1129,7 @@ def _get_sanitizer_builders():
testStage1=False,
runTestSuite=True,
testsuite_flags=['--cppflags', '-mcpu=cortex-a57',
- '--threads=8', '--build-threads=8'],
+ '--threads=64', '--build-threads=64'],
extra_cmake_args=["-DCMAKE_C_FLAGS='-mcpu=cortex-a57'",
"-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57'",
"-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"],
@@ -1437,8 +1437,7 @@ def _get_libcxx_builders():
'factory': LibcxxAndAbiBuilder.getLibcxxAndAbiBuilder(
cmake_extra_opts={'LIBCXXABI_USE_LLVM_UNWINDER': 'ON',
'CMAKE_C_FLAGS': '-mcpu=cortex-a57',
- 'CMAKE_CXX_FLAGS': '-mcpu=cortex-a57',
- 'LLVM_PARALLEL_LINK_JOBS': '4'})},
+ 'CMAKE_CXX_FLAGS': '-mcpu=cortex-a57'})},
{'name': 'libcxx-libcxxabi-libunwind-aarch64-linux-noexceptions',
'slavenames': ['linaro-apm-03', 'linaro-armv8-01-aarch64-libcxx-noeh'],
@@ -1449,8 +1448,7 @@ def _get_libcxx_builders():
'LIBCXX_ENABLE_EXCEPTIONS': 'OFF',
'LIBCXXABI_ENABLE_EXCEPTIONS': 'OFF',
'CMAKE_C_FLAGS': '-mcpu=cortex-a57',
- 'CMAKE_CXX_FLAGS': '-mcpu=cortex-a57',
- 'LLVM_PARALLEL_LINK_JOBS': '4'})},
+ 'CMAKE_CXX_FLAGS': '-mcpu=cortex-a57'})},
]