[PATCH] D40607: [zorg] Add linaro-d05-* builders

Diana Picus via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 11 06:12:25 PST 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rL320364: [zorg] Add linaro-d05-* builders (authored by rovka).

Changed prior to commit:
  https://reviews.llvm.org/D40607?vs=124889&id=126352#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D40607

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


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
@@ -294,10 +294,9 @@
 
         ## AArch64 Clang+LLVM check-all + test-suite
         {'name': "clang-cmake-aarch64-quick",
-         'slavenames':["linaro-apm-01"],
+         'slavenames':["linaro-apm-01", "linaro-d05-01-quick"],
          'builddir':"clang-cmake-aarch64-quick",
          'factory' : ClangBuilder.getClangCMakeBuildFactory(
-                      jobs=8,
                       clean=False,
                       checkout_compiler_rt=False,
                       checkout_lld=False,
@@ -318,10 +317,9 @@
         ## TODO: Add Compiler-RT after fixing all the failures
         ## TODO: Fix the three remaining test-suite failures
         {'name': "clang-cmake-aarch64-lld",
-         'slavenames':["linaro-apm-04"],
+         'slavenames':["linaro-apm-04", "linaro-d05-01-lld"],
          'builddir':"clang-cmake-aarch64-lld",
          'factory' : ClangBuilder.getClangCMakeBuildFactory(
-                      jobs=8,
                       clean=False,
                       checkout_compiler_rt=False,
                       checkout_lld=True,
@@ -341,10 +339,9 @@
 
         ## AArch64 Clang+LLVM run test-suite with GlobalISel enabled
         {'name': "clang-cmake-aarch64-global-isel",
-         'slavenames':["linaro-apm-06"],
+         'slavenames':["linaro-apm-06", "linaro-d05-01-global-isel"],
          'builddir':"clang-cmake-aarch64-global-isel",
          'factory' : ClangBuilder.getClangCMakeBuildFactory(
-                      jobs=8,
                       clean=False,
                       checkout_compiler_rt=False,
                       checkout_lld=False,
@@ -1053,10 +1050,9 @@
 
         # AArch64 Clang+LLVM+RT check-all + test-suite + self-hosting
         {'name': "clang-cmake-aarch64-full",
-         'slavenames':["linaro-apm-02", "linaro-apm-05"],
+         'slavenames':["linaro-apm-02", "linaro-apm-05", "linaro-d05-01-full"],
          'builddir':"clang-cmake-aarch64-full",
          'factory' : ClangBuilder.getClangCMakeBuildFactory(
-                      jobs=8,
                       clean=False,
                       checkout_compiler_rt=True,
                       checkout_lld=False,
@@ -1371,7 +1367,7 @@
 
         # AArch64 LibC++ and LibC++abi tests (require Clang+RT)
         {'name': 'libcxx-libcxxabi-libunwind-aarch64-linux',
-         'slavenames': ['linaro-apm-03'],
+         'slavenames': ['linaro-apm-03', 'linaro-d05-01-libcxx'],
          'builddir': 'libcxx-libcxxabi-libunwind-aarch64-linux',
          'category': 'libcxx',
          'factory': LibcxxAndAbiBuilder.getLibcxxAndAbiBuilder(
@@ -1384,7 +1380,7 @@
                               'LLVM_PARALLEL_LINK_JOBS': '4'})},
 
         {'name': 'libcxx-libcxxabi-libunwind-aarch64-linux-noexceptions',
-         'slavenames': ['linaro-apm-03'],
+         'slavenames': ['linaro-apm-03', 'linaro-d05-01-libcxx-noexceptions'],
          'builddir': 'libcxx-libcxxabi-libunwind-aarch64-linux-noexceptions',
          'category': 'libcxx',
          'factory': LibcxxAndAbiBuilder.getLibcxxAndAbiBuilder(
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
@@ -40,6 +40,12 @@
         create_slave("linaro-apm-04", properties={'jobs' : 8}, max_builds=1),
         create_slave("linaro-apm-05", properties={'jobs' : 8}, max_builds=1),
         create_slave("linaro-apm-06", properties={'jobs' : 8}, max_builds=1),
+        create_slave("linaro-d05-01-quick", properties={'jobs' : 64}, max_builds=1),
+        create_slave("linaro-d05-01-full", properties={'jobs' : 64}, max_builds=1),
+        create_slave("linaro-d05-01-global-isel", properties={'jobs' : 64}, max_builds=1),
+        create_slave("linaro-d05-01-lld", properties={'jobs' : 64}, max_builds=1),
+        create_slave("linaro-d05-01-libcxx", properties={'jobs' : 64}, max_builds=1),
+        create_slave("linaro-d05-01-libcxx-noexceptions", properties={'jobs' : 64}, max_builds=1),
 
         # AMD Athlon(tm) 64 X2 Dual Core 3800+, Ubuntu x86_64
         create_slave("grosser1", properties={'jobs': 2}, max_builds=1),


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D40607.126352.patch
Type: text/x-patch
Size: 4456 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20171211/5badcf7c/attachment.bin>


More information about the llvm-commits mailing list