[PATCH] D13393: Tweak ppc64 bot settings

Bill Seurer via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 2 11:15:40 PDT 2015


seurer created this revision.
seurer added a reviewer: gkistanova.
seurer added subscribers: llvm-commits, Zorg.

The bots have exclusive use of one of the test machines now so I am upping the -j numbers to increase the throughput.

I am also changing the slave names to regularize them better reflect what the bots do instead of what hardware they were once on long ago.

http://reviews.llvm.org/D13393

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

Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -67,14 +67,14 @@
 def _get_llvm_builders():
     return [
         {'name': "llvm-ppc64-linux1",
-         'slavenames':["chinook"],
+         'slavenames':["ppc64be-llvm"],
          'builddir':"llvm-ppc64",
-         'factory': LLVMBuilder.getLLVMBuildFactory("ppc64-linux-gnu", jobs=2, clean=False, timeout=20, config_name='Release+Asserts')},
+         'factory': LLVMBuilder.getLLVMBuildFactory("ppc64-linux-gnu", jobs=4, clean=False, timeout=20, config_name='Release+Asserts')},
 
         {'name': "ppc64le-llvm",
          'slavenames':["ppc64le-llvm"],
          'builddir':"llvm-ppc64le-1",
-         'factory': LLVMBuilder.getLLVMBuildFactory("ppc64le-linux-gnu", jobs=4, clean=False, timeout=20, config_name='Release+Asserts')},
+         'factory': LLVMBuilder.getLLVMBuildFactory("ppc64le-linux-gnu", jobs=2, clean=False, timeout=20, config_name='Release+Asserts')},
 
         {'name': "llvm-s390x-linux1",
          'slavenames':["systemz-1"],
@@ -285,32 +285,32 @@
                         extra_cmake_args=["-DLLVM_ENABLE_ASSERTIONS=ON"])},
 
         {'name' : "clang-ppc64-elf-linux",
-         'slavenames' :["chinook-clangslave1"],
+         'slavenames' :["ppc64be-clang-lnt-test"],
          'builddir' :"clang-ppc64-1",
          'factory' : LNTBuilder.getLNTFactory(triple='ppc64-elf-linux1',
                                               nt_flags=['--multisample=3','--cflag','-mcpu=native'],
-                                              jobs=2,  use_pty_in_tests=True,
+                                              jobs=4,  use_pty_in_tests=True,
                                               testerName='O3-plain', run_cxx_tests=True)},
 
         {'name' : "clang-ppc64-elf-linux2",
-         'slavenames' :["chinook-clangslave2"],
+         'slavenames' :["ppc64be-clang-multistage-test"],
          'builddir' :"clang-ppc64-2",
          'factory' : ClangBuilder.getClangBuildFactory(triple='ppc64-elf-linux',
                                                        useTwoStage=True, test=True,
                                                        checkout_compiler_rt=True,
                                                        stage1_config='Release+Asserts',
                                                        stage2_config='Release+Asserts')},
 
         {'name' : "ppc64le-clanglnt",
-         'slavenames' :["ppc64le-clanglnt"],
+         'slavenames' :["ppc64le-clang-lnt-test"],
          'builddir' :"clang-lnt-ppc64le-1",
          'factory' : LNTBuilder.getLNTFactory(triple='ppc64le-elf-linux1',
                                               nt_flags=['--multisample=3','--cflag','-mcpu=native'],
                                               jobs=4,  use_pty_in_tests=True,
                                               testerName='ppc64le-plain', run_cxx_tests=True)},
 
         {'name' : "ppc64le-clang",
-         'slavenames' :["ppc64le-clang"],
+         'slavenames' :["ppc64le-clang-multistage-test"],
          'builddir' :"clang-ppc64le-1",
          'factory' : ClangBuilder.getClangBuildFactory(triple='ppc64le-elf-linux',
                                                        useTwoStage=True, test=True,
@@ -589,12 +589,12 @@
                                               '-DLIBCXXABI_USE_LLVM_UNWINDER=ON'])},
 
           {'name': "sanitizer-ppc64-linux1",
-           'slavenames' :["sanitizer-ppc64-1"],
+           'slavenames' :["ppc64be-sanitizer"],
            'builddir': "sanitizer-ppc64-1",
            'factory': SanitizerBuilder.getSanitizerBuildFactory(timeout=1800)},
 
           {'name': "sanitizer-ppc64le-linux",
-           'slavenames' :["sanitizer-ppc64le-linux"],
+           'slavenames' :["ppc64le-sanitizer"],
            'builddir': "sanitizer-ppc64le-1",
            'factory': SanitizerBuilder.getSanitizerBuildFactory(timeout=1800)},
 
@@ -820,9 +820,9 @@
 def _get_experimental_scheduled_builders():
     return [
         {'name': "llvm-ppc64-linux2",
-         'slavenames':["coho"],
+         'slavenames':["ppc64be-llvm-quick"],
          'builddir':"llvm-ppc64-2",
-         'factory': LLVMBuilder.getLLVMBuildFactory("ppc64-linux-gnu", jobs=2, clean=False, timeout=20, config_name='Release+Asserts'),
+         'factory': LLVMBuilder.getLLVMBuildFactory("ppc64-linux-gnu", jobs=4, clean=False, timeout=20, config_name='Release+Asserts'),
          'category' : 'llvm'},
 
         {'name': "clang-atom-d525-fedora",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D13393.36385.patch
Type: text/x-patch
Size: 4645 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151002/1686b8f4/attachment.bin>


More information about the llvm-commits mailing list