[PATCH] D60635: [zorg] Add LLVM lab buildslaves for Windows/Ubuntu builders.

Galina via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Apr 15 23:09:38 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL358475: Add LLVM lab buildslaves for Windows/Ubuntu builders. (authored by gkistanova, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D60635?vs=195227&id=195298#toc

Repository:
  rL LLVM

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

https://reviews.llvm.org/D60635

Files:
  zorg/trunk/buildbot/osuosl/master/config/builders.py
  zorg/trunk/buildbot/osuosl/master/config/slaves.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
@@ -114,7 +114,7 @@
         create_slave("ppc64le-clang-multistage-test", properties={'jobs': 8}, max_builds=1),
         create_slave("ppc64le-sanitizer", properties={'jobs': 4}, max_builds=1),
         create_slave("ppc64le-lld-multistage-test", properties={'jobs': 40}, max_builds=1),
-        
+
         # POWER 8 PowerPC little endian (powerpc64le) with NVIDIA GPUs
         create_slave("ppc64le-nvidia-K40", properties={'jobs': 4}, max_builds=1),
         # POWER 8 PowerPC little endian (powerpc64le) with NVIDIA Pascal GPUs
@@ -259,6 +259,9 @@
         # 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 18.04.2 LTS x86_64 Intel(R) Xeon(R) Gold CPU @ 2.1GHz, 128GB RAM
+        create_slave("as-builder-4", properties={'jobs': 64}, 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
@@ -1047,6 +1047,17 @@
                                     depends_on_projects=['llvm', 'clang', 'lld']),
          'category'   : 'lld'},
 
+        {'name' : "lld-x86_64-ubuntu-fast",
+         'slavenames' : ["as-builder-4"],
+         'builddir' : "lld-x86_64-ubuntu-fast",
+         'mergeRequests': False,
+         'factory': UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
+                                    clean=True,
+                                    extra_configure_args=[
+                                        '-DLLVM_ENABLE_WERROR=OFF'],
+                                    depends_on_projects=['llvm', 'lld']),
+         'category' : 'lld'},
+
         ]
 
 # llgo builders.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60635.195298.patch
Type: text/x-patch
Size: 2202 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190416/d699eb87/attachment.bin>


More information about the llvm-commits mailing list