[Lldb-commits] [PATCH] D60458: [zorg] Add lldb-x86_64-debian builder
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 9 05:52:22 PDT 2019
labath created this revision.
labath added reviewers: jankratochvil, stella.stamenova, zturner, gkistanova.
Initially, the builder will be silent, because I expect noise from flaky
tests. Once those have been dealt with, I'd like to switch on breakage
notifications.
https://reviews.llvm.org/D60458
Files:
buildbot/osuosl/master/config/builders.py
buildbot/osuosl/master/config/slaves.py
buildbot/osuosl/master/config/status.py
Index: buildbot/osuosl/master/config/status.py
===================================================================
--- buildbot/osuosl/master/config/status.py
+++ buildbot/osuosl/master/config/status.py
@@ -265,4 +265,12 @@
mode = "failing",
builders = ["lldb-x86_64-fedora"],
addLogs=False),
+ InformativeMailNotifier(
+ fromaddr = "llvm.buildmaster at lab.llvm.org",
+ sendToInterestedUsers = True,
+ extraRecipients = ["labath at google.com"],
+ subject="Build %(builder)s Failure",
+ mode = "failing",
+ builders = ["lldb-x86_64-debian"],
+ addLogs=False),
]
Index: buildbot/osuosl/master/config/slaves.py
===================================================================
--- buildbot/osuosl/master/config/slaves.py
+++ buildbot/osuosl/master/config/slaves.py
@@ -256,6 +256,9 @@
# test only: Fedora latest stable x86_64, Intel i5-2500, 4 cores, 12GB RAM
create_slave("lldb-x86_64-fedora", properties={'jobs': 4}, max_builds=1),
+ # Debian x86_64 Buster Xeon(R) Gold 6154 CPU @ 3.00GHz, 192GB RAM
+ create_slave("lldb-x86_64-debian", properties={'jobs': 72}, max_builds=1),
+
# Ubuntu 14.04 x86_64, Intel(R) Xeon(R) CPU @ 2.30GHz
#create_slave("llgo-builder", properties={'jobs': 2}, max_builds=1),
Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -953,6 +953,16 @@
test=True,
extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=True',
'-DLLVM_USE_LINKER=gold'])},
+ {'name': "lldb-x86_64-debian",
+ 'slavenames': ["lldb-x86_64-debian"],
+ 'builddir': "lldb-x86_64-debian",
+ 'category' : 'lldb',
+ 'factory': LLDBBuilder.getLLDBCMakeBuildFactory(
+ test=True,
+ extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=True',
+ '-DLLVM_USE_LINKER=gold',
+ '-DCMAKE_C_COMPILER=clang',
+ '-DCMAKE_CXX_COMPILER=clang++'])},
{'name': "lldb-x64-windows-ninja",
'slavenames': ["win-py3-buildbot"],
'builddir': "lldb-x64-windows-ninja",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60458.194300.patch
Type: text/x-patch
Size: 2457 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190409/ff984650/attachment.bin>
More information about the lldb-commits
mailing list