[PATCH] D48741: [Zorg] Add OpenBSD buildbot

David CARLIER via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 28 14:07:40 PDT 2018


devnexen created this revision.
devnexen added a reviewer: gkistanova.
devnexen created this object with visibility "All Users".
Herald added subscribers: llvm-commits, krytarowski.

Adding clang build slave for OpenBSD


Repository:
  rL LLVM

https://reviews.llvm.org/D48741

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


Index: buildbot/osuosl/master/config/status.py
===================================================================
--- buildbot/osuosl/master/config/status.py
+++ buildbot/osuosl/master/config/status.py
@@ -246,4 +246,13 @@
             builders = ["llvm-riscv-linux"],
             addLogs=False,
             num_lines = 15),
+        InformativeMailNotifier(
+            fromaddr = "llvm.buildmaster at lab.llvm.org",
+            sendToInterestedUsers = False,
+            extraRecipients = ["devnexen at gmail.com"],
+            subject="Build %(builder)s Failure",
+            mode = "failing",
+            builders = ["clang-openbsd63-amd64"],
+            addLogs=False,
+            num_lines = 15),
         ]
Index: buildbot/osuosl/master/config/slaves.py
===================================================================
--- buildbot/osuosl/master/config/slaves.py
+++ buildbot/osuosl/master/config/slaves.py
@@ -257,8 +257,8 @@
         # Debian 86_64, 2 x 6-core Opteron 2.6 GHz
         #create_slave("osu8", properties={'jobs' : 6}, max_builds=2),
 
-        # OpenBSD
-        #create_slave("openbsd-buildslave", properties={'jobs': 2}, max_builds=1),
+        # OpenBSD 6.3 amd64
+        create_slave("clang-openbsd63-amd64", properties={'jobs': 2}, 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: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -813,6 +813,17 @@
                       #env={'BUCKET': ''}
                ),
          'category': 'clang'},
+
+        # OpenBSD
+        {'name' : "clang-openbsd63-amd64",
+         'slavenames' : ["openbsd63-amd64"],
+         'builddir' : "clang-openbsd63-amd64",
+         'factory': ClangBuilder.getClangCMakeBuildFactory(
+                       checkout_lld=False,
+                       clean=True,
+                       extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
+                                         '-DCMAKE_BUILD_TYPE:STRING=Release'])},
+
     ]
 
 # Polly builders.


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D48741.153387.patch
Type: text/x-patch
Size: 2237 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180628/efdf19df/attachment.bin>


More information about the llvm-commits mailing list