[Lldb-commits] [PATCH] D60458: [zorg] Add lldb-x86_64-debian builder

Pavel Labath via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Apr 10 00:47:20 PDT 2019


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.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),
         ]


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60458.194455.patch
Type: text/x-patch
Size: 2556 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190410/12cd9563/attachment.bin>


More information about the lldb-commits mailing list