[zorg] r273515 - Set a real haltOnFailure.
Galina Kistanova via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 22 16:44:59 PDT 2016
Author: gkistanova
Date: Wed Jun 22 18:44:59 2016
New Revision: 273515
URL: http://llvm.org/viewvc/llvm-project?rev=273515&view=rev
Log:
Set a real haltOnFailure.
Modified:
zorg/trunk/zorg/buildbot/builders/LLDBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/LLDBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/LLDBuilder.py?rev=273515&r1=273514&r2=273515&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/LLDBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/LLDBuilder.py Wed Jun 22 18:44:59 2016
@@ -55,7 +55,7 @@ def getLLDBuildFactory(
# Create configuration files with cmake
f.addStep(CmakeCommand(name="cmake-configure",
description=["cmake configure"],
- haltOnFailure=False, # TODO: change to True
+ haltOnFailure=True,
options=extra_configure_args,
path="../%s" % f.llvm_srcdir,
env=merged_env,
@@ -67,7 +67,7 @@ def getLLDBuildFactory(
f.addStep(ShellCommand(name="build_Lld",
command=['nice', '-n', '10',
'make', WithProperties("-j%s" % jobs)],
- haltOnFailure=False, # TODO: change to True
+ haltOnFailure=True,
description=["build lld"],
env=merged_env,
workdir=f.llvm_objdir))
@@ -75,7 +75,7 @@ def getLLDBuildFactory(
# Test Lld
f.addStep(ShellCommand(name="test_lld",
command=["make", "lld-test"],
- haltOnFailure=False, # TODO: change to True
+ haltOnFailure=True,
description=["test lld"],
env=merged_env,
workdir=f.llvm_objdir))
More information about the llvm-commits
mailing list