Commit 3d7fdf9c authored by Owen Rodley's avatar Owen Rodley Committed by Commit Bot

Add tree closing configs for chromium.memory builders.

Bug: 1094768
Change-Id: Ib692acc66b8446cc2606551507caf01b6c7bc313
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2289271
Commit-Queue: Owen Rodley <orodley@chromium.org>
Commit-Queue: Takuto Ikuta <tikuta@chromium.org>
Auto-Submit: Owen Rodley <orodley@chromium.org>
Reviewed-by: default avatarTakuto Ikuta <tikuta@chromium.org>
Cr-Commit-Position: refs/heads/master@{#786611}
parent 9124147a
This diff is collapsed.
...@@ -868,6 +868,7 @@ def memory_builder( ...@@ -868,6 +868,7 @@ def memory_builder(
name, name,
goma_jobs=builders.goma.jobs.MANY_JOBS_FOR_CI, goma_jobs=builders.goma.jobs.MANY_JOBS_FOR_CI,
notifies=None, notifies=None,
tree_closing=True,
**kwargs): **kwargs):
if name.startswith('Linux'): if name.startswith('Linux'):
notifies = (notifies or []) + ['linux-memory'] notifies = (notifies or []) + ['linux-memory']
...@@ -878,6 +879,7 @@ def memory_builder( ...@@ -878,6 +879,7 @@ def memory_builder(
goma_jobs = goma_jobs, goma_jobs = goma_jobs,
mastername = 'chromium.memory', mastername = 'chromium.memory',
notifies = notifies, notifies = notifies,
tree_closing=tree_closing,
**kwargs **kwargs
) )
......
...@@ -2889,6 +2889,7 @@ ci.memory_builder( ...@@ -2889,6 +2889,7 @@ ci.memory_builder(
# TODO(https://crbug.com/919430) Remove the larger timeout once compile # TODO(https://crbug.com/919430) Remove the larger timeout once compile
# times have been brought down to reasonable level # times have been brought down to reasonable level
execution_timeout = time.hour * 9 / 2, # 4.5 (can't multiply float * duration) execution_timeout = time.hour * 9 / 2, # 4.5 (can't multiply float * duration)
tree_closing = False,
) )
ci.memory_builder( ci.memory_builder(
...@@ -3028,6 +3029,7 @@ ci.memory_builder( ...@@ -3028,6 +3029,7 @@ ci.memory_builder(
short_name = 'asn', short_name = 'asn',
), ),
main_console_view = 'main', main_console_view = 'main',
tree_closing = False,
) )
ci.memory_builder( ci.memory_builder(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment