[PATCH] D49869: [Zorg] Update openbsd slave

David CARLIER via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 25 07:41:45 PDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rL342979: [Zorg] Update openbsd slave (authored by devnexen, committed by ).

Changed prior to commit:
  https://reviews.llvm.org/D49869?vs=157652&id=166915#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D49869

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


Index: zorg/trunk/buildbot/osuosl/master/config/status.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/status.py
+++ zorg/trunk/buildbot/osuosl/master/config/status.py
@@ -252,7 +252,7 @@
             extraRecipients = ["devnexen at gmail.com"],
             subject="Build %(builder)s Failure",
             mode = "failing",
-            builders = ["clang-openbsd63-amd64"],
+            builders = ["clang-openbsd-amd64"],
             addLogs=False,
             num_lines = 15),
         ]
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
@@ -261,8 +261,8 @@
         # Debian 86_64, 2 x 6-core Opteron 2.6 GHz
         #create_slave("osu8", properties={'jobs' : 6}, max_builds=2),
 
-        # OpenBSD 6.3 amd64
-        create_slave("openbsd63-amd64", properties={'jobs': 2}, max_builds=1),
+        # OpenBSD amd64
+        create_slave("openbsd-amd64", properties={'jobs': 2}, max_builds=1),
 
         # test only: Fedora 28 x86_64, Intel Xeon E5-2630v3, 32 HT cores, 64GB RAM
         create_slave("lldb-x86_64-fedora-28-cmake", properties={'jobs': 16}, 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
@@ -792,14 +792,16 @@
          'category': 'clang'},
 
         # OpenBSD
-        {'name' : "clang-openbsd63-amd64",
-         'slavenames' : ["openbsd63-amd64"],
-         'builddir' : "clang-openbsd63-amd64",
+        {'name' : "clang-openbsd-amd64",
+         'slavenames' : ["openbsd-amd64"],
+         'builddir' : "clang-openbsd-amd64",
          'factory': ClangBuilder.getClangCMakeBuildFactory(
                        checkout_lld=False,
                        clean=True,
                        extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
-                                         '-DCMAKE_BUILD_TYPE:STRING=Release'])},
+                                         '-DCMAKE_BUILD_TYPE:STRING=Release',
+                                         '-DCLANG_BUILD_TOOLS=OFF',
+                                         '-DCLANG_ENABLE_ARCMT=OFF'])},
 
     ]
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49869.166915.patch
Type: text/x-patch
Size: 2448 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180925/2b5d57c1/attachment.bin>


More information about the llvm-commits mailing list