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

Rainer Orth via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Jun 18 07:55:28 PDT 2019


ro created this revision.
ro added a reviewer: gkistanova.
ro added a project: Zorg.
Herald added subscribers: fedor.sergeev, jyknight.
Herald added a project: LLVM.

I'm working to provide two Solaris 11.4 build slaves with a clang builder each, one on
amd64, the other on sparcv9.  I'm still working out the details like parallelism and
max_builds, but the attached patch captures the basics, intended to be minimal.


Repository:
  rL LLVM

https://reviews.llvm.org/D63495

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


Index: buildbot/osuosl/master/config/slaves.py
===================================================================
--- buildbot/osuosl/master/config/slaves.py
+++ buildbot/osuosl/master/config/slaves.py
@@ -220,4 +220,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),
+
         ]
Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -745,6 +745,24 @@
                ),
          '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'])},
+
+        {'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'])},
+
     ]
 
 # Polly builders.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D63495.205347.patch
Type: text/x-patch
Size: 1640 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190618/b69892e5/attachment.bin>


More information about the llvm-commits mailing list