Commit 2fcffca3 authored by Garrett Beaty's avatar Garrett Beaty Committed by Commit Bot

Touch ups to maintain the main console state for branches.

Some CI builders are mirrors for CQ try builders despite not being a
part of the main waterfall. These builders are handled by separate
sheriffing rotations for trunk, but the branches only have a single
rotation, so make sure that when config is generated for the branch,
they appear on the main console.

Change-Id: I6e7370606968d9a255eb08b5a7c4d2c0fef90220
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2367635Reviewed-by: default avatarStephen Martinis <martiniss@chromium.org>
Commit-Queue: Stephen Martinis <martiniss@chromium.org>
Auto-Submit: Garrett Beaty <gbeaty@chromium.org>
Cr-Commit-Position: refs/heads/master@{#800281}
parent ec5f3f8a
......@@ -612,7 +612,7 @@ ci.dawn_builder(
category = "DEPS|Linux|Builder",
short_name = "x64",
),
main_console_view = None,
main_console_view = main_console_if_on_branch(),
)
ci.dawn_builder(
......@@ -622,7 +622,7 @@ ci.dawn_builder(
short_name = "x64",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Linux x64 DEPS Builder")],
)
......@@ -634,7 +634,7 @@ ci.dawn_builder(
short_name = "x64",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Linux x64 DEPS Builder")],
)
......@@ -647,7 +647,7 @@ ci.dawn_builder(
short_name = "x64",
),
cores = None,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.MAC_ANY,
)
......@@ -660,7 +660,7 @@ ci.dawn_builder(
short_name = "x64",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Mac x64 DEPS Builder")],
)
......@@ -672,7 +672,7 @@ ci.dawn_builder(
short_name = "x64",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Mac x64 DEPS Builder")],
)
......@@ -683,7 +683,7 @@ ci.dawn_builder(
category = "DEPS|Windows|Builder",
short_name = "x64",
),
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.WINDOWS_ANY,
)
......@@ -694,7 +694,7 @@ ci.dawn_builder(
short_name = "x64",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Win10 x64 DEPS Builder")],
)
......@@ -706,7 +706,7 @@ ci.dawn_builder(
short_name = "x64",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Win10 x64 DEPS Builder")],
)
......@@ -717,7 +717,7 @@ ci.dawn_builder(
category = "DEPS|Windows|Builder",
short_name = "x86",
),
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.WINDOWS_ANY,
)
......@@ -728,7 +728,7 @@ ci.dawn_builder(
short_name = "x86",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Win10 x86 DEPS Builder")],
)
......@@ -740,7 +740,7 @@ ci.dawn_builder(
short_name = "x86",
),
cores = 2,
main_console_view = None,
main_console_view = main_console_if_on_branch(),
os = os.LINUX_DEFAULT,
triggered_by = [builder_name("Dawn Win10 x86 DEPS Builder")],
)
......@@ -750,7 +750,7 @@ ci.fyi_builder(
console_view_entry = ci.console_view_entry(
category = "linux",
),
main_console_view = None,
main_console_view = main_console_if_on_branch(),
)
ci.fyi_ios_builder(
......@@ -760,7 +760,7 @@ ci.fyi_ios_builder(
category = "cronet",
),
executable = "recipe:chromium",
main_console_view = None,
main_console_view = main_console_if_on_branch(),
notifies = ["cronet"],
properties = {
"xcode_build_version": "11e146",
......@@ -961,7 +961,7 @@ ci.linux_builder(
category = "linux",
short_name = "loh",
),
main_console_view = None,
main_console_view = main_console_if_on_branch(),
triggered_by = [builder_name("linux-ozone-rel")],
)
......@@ -972,7 +972,7 @@ ci.linux_builder(
category = "linux",
short_name = "low",
),
main_console_view = None,
main_console_view = main_console_if_on_branch(),
triggered_by = [builder_name("linux-ozone-rel")],
)
......@@ -983,7 +983,7 @@ ci.linux_builder(
category = "linux",
short_name = "lox",
),
main_console_view = None,
main_console_view = main_console_if_on_branch(),
triggered_by = [builder_name("linux-ozone-rel")],
)
......
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