Skip to content
Snippets Groups Projects
Commit d6f70359 authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge pull request #3728 from nicolasnoble/go-fetch

Improving run_tests's build step.
parents c96f27bc 351da8d1
No related branches found
No related tags found
No related merge requests found
......@@ -618,7 +618,7 @@ for l in languages:
set(l.make_targets()))
build_steps = list(set(
jobset.JobSpec(cmdline, environ={'CONFIG': cfg})
jobset.JobSpec(cmdline, environ={'CONFIG': cfg}, flake_retries=5)
for cfg in build_configs
for l in languages
for cmdline in l.pre_build_steps()))
......@@ -737,7 +737,7 @@ def _build_and_run(
check_cancelled, newline_on_success, travis, cache, xml_report=None):
"""Do one pass of building & running tests."""
# build latest sequentially
if not jobset.run(build_steps, maxjobs=1,
if not jobset.run(build_steps, maxjobs=1, stop_on_failure=True,
newline_on_success=newline_on_success, travis=travis):
return 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment