This revision was automatically updated to reflect the committed changes.
Closed by commit rL358054: [zorg] Add lldb-x86_64-debian builder (authored by 
labath, committed by ).
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.

Repository:
  rL LLVM

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D60458/new/

https://reviews.llvm.org/D60458

Files:
  zorg/trunk/buildbot/osuosl/master/config/builders.py
  zorg/trunk/buildbot/osuosl/master/config/slaves.py
  zorg/trunk/buildbot/osuosl/master/config/status.py


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/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/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.buildmas...@lab.llvm.org",
+            sendToInterestedUsers = True,
+            extraRecipients = ["lab...@google.com"],
+            subject="Build %(builder)s Failure",
+            mode = "failing",
+            builders = ["lldb-x86_64-debian"],
+            addLogs=False),
         ]


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/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/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.buildmas...@lab.llvm.org",
+            sendToInterestedUsers = True,
+            extraRecipients = ["lab...@google.com"],
+            subject="Build %(builder)s Failure",
+            mode = "failing",
+            builders = ["lldb-x86_64-debian"],
+            addLogs=False),
         ]
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to