[PATCH] D63495: [zorg] Add solaris11-amd64, solaris11-sparcv9 builders

Rainer Orth via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 19 03:26:11 PDT 2019


This revision was automatically updated to reflect the committed changes.
Closed by commit rL363785: [zorg] Add solaris11-amd64, solaris11-sparcv9 builders (authored by ro, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D63495?vs=205526&id=205536#toc

Repository:
  rL LLVM

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

https://reviews.llvm.org/D63495

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


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
@@ -745,6 +745,25 @@
                ),
          'category': 'clang'},
 
+        {'name' : "clang-solaris11-amd64",
+         'slavenames' : ["solaris11-amd64"],
+         'builddir' : "clang-solaris11-amd64",
+         'factory': ClangBuilder.getClangCMakeBuildFactory(
+		       clean=False,
+		       checkout_lld=False,
+                       extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
+					 '-DLLVM_TARGETS_TO_BUILD=X86',
+                                         '-DCLANG_DEFAULT_LINKER=/usr/bin/ld'])},
+
+        {'name' : "clang-solaris11-sparcv9",
+         'slavenames' : ["solaris11-sparcv9"],
+         'builddir' : "clang-solaris11-sparcv9",
+         'factory': ClangBuilder.getClangCMakeBuildFactory(
+		       clean=False,
+		       checkout_lld=False,
+                       extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
+					 '-DLLVM_TARGETS_TO_BUILD=Sparc',
+                                         '-DCLANG_DEFAULT_LINKER=/usr/bin/ld'])},
     ]
 
 # Polly builders.
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
@@ -218,4 +218,8 @@
         # 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),
 
+        # Solaris 11
+        create_slave("solaris11-amd64", properties={'jobs' : 8}, max_builds=1),
+        create_slave("solaris11-sparcv9", properties={'jobs' : 8}, max_builds=1),
+
         ]


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63495.205536.patch
Type: text/x-patch
Size: 1864 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190619/33e5073f/attachment.bin>


More information about the llvm-commits mailing list