Skip to content

Commit

Permalink
increase timeout for build step jobs to 10 mins
Browse files Browse the repository at this point in the history
  • Loading branch information
jtattermusch committed Oct 7, 2015
1 parent 47eeb2b commit 2189719
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/run_tests/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,7 @@ def make_jobspec(cfg, targets, makefile='Makefile'):
make_commands = itertools.chain.from_iterable(make_jobspec(cfg, list(targets), makefile) for cfg in build_configs for (makefile, targets) in make_targets.iteritems())
build_steps.extend(set(make_commands))
build_steps.extend(set(
jobset.JobSpec(cmdline, environ={'CONFIG': cfg})
jobset.JobSpec(cmdline, environ={'CONFIG': cfg}, timeout_seconds=10*60)
for cfg in build_configs
for l in languages
for cmdline in l.build_steps()))
Expand Down

0 comments on commit 2189719

Please sign in to comment.