[llvm-commits] [zorg] r125246 - /zorg/trunk/buildbot/llvmlab/master/config/builders.py

David Dean david_dean at apple.com
Wed Feb 9 16:12:05 PST 2011


Author: ddean
Date: Wed Feb  9 18:12:05 2011
New Revision: 125246

URL: http://llvm.org/viewvc/llvm-project?rev=125246&view=rev
Log:
add make tools to NightlyFactory and switch to TEST=simple until the planned improvements are implemented; normalize usage of quotes in NightlyFactory

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

Modified: zorg/trunk/buildbot/llvmlab/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/llvmlab/master/config/builders.py?rev=125246&r1=125245&r2=125246&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/builders.py (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/builders.py Wed Feb  9 18:12:05 2011
@@ -321,14 +321,22 @@
             description=['configure tests'],
             env={'PATH': WithProperties('%(use_path)s:${PATH}')},
             workdir='test-suite-build'))
+    # You need to make the tools target.
+    f.addStep(buildbot.steps.shell.ShellCommand(
+            name='make.tools',
+            command=['make', 'tools', WithProperties('-j%(jobs)s')],
+            env={'PATH': WithProperties('%(use_path)s:${PATH}')},
+            haltOnFailure=True,
+            description=['Make', 'tools'],
+            workdir='test-suite-build'))
     # Build and test.
     f.addStep(NightlyTestCommand(
             name='run.fast.nightly.tests',
             command=['make', WithProperties('-j%(jobs)s'), 'ENABLE_PARALLEL_REPORT=1',
-                     'DISABLE_CBE=1', 'DISABLE_JIT=1', 'TEST=nightly', 'report'],
+                     'DISABLE_CBE=1', 'DISABLE_JIT=1', 'TEST=simple', 'report'],
             env={'PATH': WithProperties('%(use_path)s:${PATH}')},
             haltOnFailure=True,
-            description=["run", "test-suite"],
+            description=['run', 'test-suite'],
             workdir='test-suite-build',
             logfiles={ 'report' : 'report.nightly.txt'},
             xfails=xfails))





More information about the llvm-commits mailing list