[zorg] r345391 - Add jobs flag to check-cxx and check-libcxxabi rules so dependancies are built faster

Eric Fiselier via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 26 08:03:43 PDT 2018


Author: ericwf
Date: Fri Oct 26 08:03:43 2018
New Revision: 345391

URL: http://llvm.org/viewvc/llvm-project?rev=345391&view=rev
Log:
Add jobs flag to check-cxx and check-libcxxabi rules so dependancies are built faster

Modified:
    zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py

Modified: zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py?rev=345391&r1=345390&r2=345391&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LibcxxAndAbiBuilder.py Fri Oct 26 08:03:43 2018
@@ -119,7 +119,7 @@ def getLibcxxAndAbiBuilder(f=None, env={
     # Test libc++abi
     f.addStep(LitTestCommand(
         name            = 'test.libcxxabi',
-        command         = ['make', 'check-libcxxabi'],
+        command         = ['make', jobs_flag, 'check-libcxxabi'],
         description     = ['testing', 'libcxxabi'],
         descriptionDone = ['test', 'libcxxabi'],
         workdir         = build_path))
@@ -127,7 +127,7 @@ def getLibcxxAndAbiBuilder(f=None, env={
     # Test libc++
     f.addStep(LitTestCommand(
         name            = 'test.libcxx',
-        command         = ['make', 'check-libcxx'],
+        command         = ['make', jobs_flag, 'check-libcxx'],
         description     = ['testing', 'libcxx'],
         descriptionDone = ['test', 'libcxx'],
         workdir         = build_path))




More information about the llvm-commits mailing list