[zorg] r312647 - [zorg] Remove clang-cmake-aarch64-42vma builder
Diana Picus via llvm-commits
llvm-commits at lists.llvm.org
Wed Sep 6 09:32:01 PDT 2017
Author: rovka
Date: Wed Sep 6 09:32:01 2017
New Revision: 312647
URL: http://llvm.org/viewvc/llvm-project?rev=312647&view=rev
Log:
[zorg] Remove clang-cmake-aarch64-42vma builder
... and re-purpose hardware for 2nd clang-cmake-aarch64-full builder.
Hardware hosting "aarch64-full" builder is not very stable, and we
want to use a known-stable box for this important builder.
Hardware hosting "aarch64-42vma" builder seems to be solid, and this
builder is no longer very valuable.
We are going to run "aarch64-full" builder on the 2 slaves in parallel
until unstable-ish box crashes again. At that point we are going
to dicommision that box and leave aarch64-full bot running on 1 slave.
Patch by Maxim Kuvyrkov.
Differential Revision: https://reviews.llvm.org/D37459
Modified:
zorg/trunk/buildbot/osuosl/master/config/builders.py
Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=312647&r1=312646&r2=312647&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Wed Sep 6 09:32:01 2017
@@ -1041,7 +1041,7 @@ def _get_sanitizer_builders():
# AArch64 Clang+LLVM+RT check-all + test-suite + self-hosting
{'name': "clang-cmake-aarch64-full",
- 'slavenames':["linaro-apm-02"],
+ 'slavenames':["linaro-apm-02", "linaro-apm-05"],
'builddir':"clang-cmake-aarch64-full",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
jobs=8,
@@ -1059,24 +1059,6 @@ def _get_sanitizer_builders():
"-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"],
)},
- # AArch64 Clang+LLVM+RT check-all at 42-bits VMA
- {'name': "clang-cmake-aarch64-42vma",
- 'slavenames':["linaro-apm-05"],
- 'builddir':"clang-cmake-aarch64-42vma",
- 'factory' : ClangBuilder.getClangCMakeBuildFactory(
- jobs=8,
- clean=False,
- checkout_compiler_rt=True,
- checkout_lld=False,
- test=True,
- useTwoStage=False,
- runTestSuite=False,
- env={'PATH':'/usr/lib64/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'},
- extra_cmake_args=["-DCMAKE_C_FLAGS='-mcpu=cortex-a57 -DSANITIZER_AARCH64_VMA=42'",
- "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57 -DSANITIZER_AARCH64_VMA=42'",
- "-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"],
- )},
-
# Juno
{'name' : "clang-native-aarch64-full",
'slavenames' :["juno-aarch64-01"],
More information about the llvm-commits
mailing list