[zorg] r306523 - Add AArch64 GlobalISel buildbot

Diana Picus via llvm-commits llvm-commits at lists.llvm.org
Wed Jun 28 02:21:41 PDT 2017


Author: rovka
Date: Wed Jun 28 02:21:41 2017
New Revision: 306523

URL: http://llvm.org/viewvc/llvm-project?rev=306523&view=rev
Log:
Add AArch64 GlobalISel buildbot

Add an AArch64 builder that runs the test-suite at -O0 with GlobalISel
enabled. This repurposes a slave that we used before so there's no need
to add a new slave.

Modified:
    zorg/trunk/buildbot/osuosl/master/config/builders.py

Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=306523&r1=306522&r2=306523&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Wed Jun 28 02:21:41 2017
@@ -334,6 +334,24 @@ def _get_clang_builders():
                ),
          'category'   : 'lld'},
 
+        ## AArch64 Clang+LLVM run test-suite with GlobalISel enabled
+        {'name': "clang-cmake-aarch64-global-isel",
+         'slavenames':["linaro-apm-06"],
+         'builddir':"clang-cmake-aarch64-global-isel",
+         'factory' : ClangBuilder.getClangCMakeBuildFactory(
+                      jobs=8,
+                      clean=False,
+                      checkout_compiler_rt=False,
+                      checkout_lld=False,
+                      test=True,
+                      useTwoStage=False,
+                      runTestSuite=True,
+                      nt_flags=['--cflag', '-mcpu=cortex-a57', '--cflag', '-O0', '--mllvm=-global-isel', '--mllvm=-global-isel-abort=0', '--threads=8', '--build-threads=8'],
+                      env={'PATH':'/usr/lib64/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'},
+                      extra_cmake_args=["-DCMAKE_C_FLAGS='-mcpu=cortex-a57'",
+                                        "-DCMAKE_CXX_FLAGS='-mcpu=cortex-a57'",
+                                        "-DLLVM_TARGETS_TO_BUILD='ARM;AArch64'"],
+               )},
 
         {'name': 'clang-x86-windows-msvc2015',
          'slavenames': ['windows-gcebot2'],




More information about the llvm-commits mailing list