[zorg] r373521 - Added new builders lldb-s390x-fedora, lldb-ppc64le-fedora.

Galina Kistanova via llvm-commits llvm-commits at lists.llvm.org
Wed Oct 2 13:36:38 PDT 2019


Author: gkistanova
Date: Wed Oct  2 13:36:38 2019
New Revision: 373521

URL: http://llvm.org/viewvc/llvm-project?rev=373521&view=rev
Log:
Added new builders lldb-s390x-fedora, lldb-ppc64le-fedora.

Patch by Jan Kratochvil.

Modified:
    zorg/trunk/buildbot/osuosl/master/config/builders.py
    zorg/trunk/buildbot/osuosl/master/config/slaves.py
    zorg/trunk/buildbot/osuosl/master/config/status.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=373521&r1=373520&r2=373521&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Wed Oct  2 13:36:38 2019
@@ -828,6 +828,26 @@ def _get_lldb_builders():
                     extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=True',
                                       '-DLLVM_USE_LINKER=gold',
                                       '-DLLVM_LIT_ARGS="-v"'])},
+        {'name': "lldb-s390x-fedora",
+         'slavenames': ["lldb-s390x-fedora"],
+         'builddir': "lldb-s390x-fedora",
+         'category' : 'lldb',
+         'factory': LLDBBuilder.getLLDBCMakeBuildFactory(
+                    clean=True,
+                    test=True,
+                    extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=True',
+                                      '-DLLVM_USE_LINKER=gold',
+                                      '-DLLVM_LIT_ARGS="-v"'])},
+        {'name': "lldb-ppc64le-fedora",
+         'slavenames': ["lldb-ppc64le-fedora"],
+         'builddir': "lldb-ppc64le-fedora",
+         'category' : 'lldb',
+         'factory': LLDBBuilder.getLLDBCMakeBuildFactory(
+                    clean=True,
+                    test=True,
+                    extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=True',
+                                      '-DLLVM_USE_LINKER=gold',
+                                      '-DLLVM_LIT_ARGS="-v"'])},
         {'name': "lldb-x86_64-debian",
          'slavenames': ["lldb-x86_64-debian"],
          'builddir': "lldb-x86_64-debian",

Modified: zorg/trunk/buildbot/osuosl/master/config/slaves.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/slaves.py?rev=373521&r1=373520&r2=373521&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/slaves.py Wed Oct  2 13:36:38 2019
@@ -179,9 +179,15 @@ def get_build_slaves():
         create_slave("fuchsia-debian-64-us-central1-a-1", properties={'jobs': 64}, max_builds=1),
         create_slave("fuchsia-debian-64-us-central1-b-1", properties={'jobs': 64}, max_builds=1),
 
-        # test only: Fedora latest stable x86_64, Intel i5-2500, 4 cores, 12GB RAM
+        # Fedora latest stable x86_64, Intel i5-2500, 4 cores, 12GB RAM
         create_slave("lldb-x86_64-fedora", properties={'jobs': 4}, max_builds=1),
 
+        # Fedora latest stable s390x, IBM/S390 machine = 2964, 4 cores, 10GB RAM
+        create_slave("lldb-s390x-fedora", properties={'jobs': 4}, max_builds=1),
+
+        # Fedora latest stable ppc64le, POWER8 (architected), 2 cores, 4GB RAM
+        create_slave("lldb-ppc64le-fedora", properties={'jobs': 2}, 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),
 

Modified: zorg/trunk/buildbot/osuosl/master/config/status.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/status.py?rev=373521&r1=373520&r2=373521&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/status.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/status.py Wed Oct  2 13:36:38 2019
@@ -218,7 +218,7 @@ def get_status_targets(standard_builders
             extraRecipients = ["jan.kratochvil at redhat.com"],
             subject="Build %(builder)s Failure",
             mode = "failing",
-            builders = ["lldb-x86_64-fedora"],
+            builders = ["lldb-x86_64-fedora","lldb-s390x-fedora","lldb-ppc64le-fedora"],
             addLogs=False),
         InformativeMailNotifier(
             fromaddr = "llvm.buildmaster at lab.llvm.org",




More information about the llvm-commits mailing list