Skip to content

Commit

Permalink
Don't halt on test failure.
Browse files Browse the repository at this point in the history
whitequark committed Mar 3, 2017
1 parent a5b67f8 commit 12b6733
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/var/buildbot/master/master.cfg
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ openfpgaBuildFactory.addStep(ShellCommand(
name = 'cppcheck_openfpga',
command = ['cppcheck', '-q', '--enable=warning', '--error-exitcode=1',
WithProperties('%(workdir)s/openfpga/src')],
haltOnFailure = True,
haltOnFailure = False,
description = 'cppchecking',
descriptionDone = 'cppcheck',
descriptionSuffix = 'openfpga'))
@@ -136,7 +136,7 @@ def addOpenfpgaBuildStep(suffix, cmake_args=[], build_prefix=[]):
name = 'test_openfpga_' + suffix,
command = ['ctest', ctest_mode],
workdir = workdir,
haltOnFailure = True,
haltOnFailure = False,
description = 'testing',
descriptionDone = 'test',
descriptionSuffix = ['openfpga', suffix]))

0 comments on commit 12b6733

Please sign in to comment.