[PATCH] D49869: [Zorg] Update openbsd slave

David CARLIER via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 26 11:18:13 PDT 2018


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

- More generic name as release move forward fastly.
- Remove unused targets.


Repository:
  rL LLVM

https://reviews.llvm.org/D49869

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
@@ -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: buildbot/osuosl/master/config/slaves.py
===================================================================
--- buildbot/osuosl/master/config/slaves.py
+++ buildbot/osuosl/master/config/slaves.py
@@ -260,8 +260,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),
 
         # 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
@@ -815,14 +815,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',
+                                         '-DCLANGBUILD_TOOLS=OFF',
+                                         '-DCLANG_ENABLE_ARCMT=OFF'])},
 
     ]
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49869.157541.patch
Type: text/x-patch
Size: 2312 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180726/0ed9facd/attachment.bin>


More information about the llvm-commits mailing list