Index: zorg/trunk/buildbot/osuosl/master/config/builders.py =================================================================== --- zorg/trunk/buildbot/osuosl/master/config/builders.py +++ zorg/trunk/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", Index: zorg/trunk/buildbot/osuosl/master/config/slaves.py =================================================================== --- zorg/trunk/buildbot/osuosl/master/config/slaves.py +++ zorg/trunk/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: zorg/trunk/buildbot/osuosl/master/config/status.py =================================================================== --- zorg/trunk/buildbot/osuosl/master/config/status.py +++ zorg/trunk/buildbot/osuosl/master/config/status.py @@ -265,4 +265,12 @@ mode = "failing", builders = ["lldb-x86_64-fedora"], addLogs=False), + InformativeMailNotifier( + fromaddr = "llvm.buildmaster@lab.llvm.org", + sendToInterestedUsers = True, + extraRecipients = ["labath@google.com"], + subject="Build %(builder)s Failure", + mode = "failing", + builders = ["lldb-x86_64-debian"], + addLogs=False), ]