Commit 79aee8c7 authored by Garrett Beaty's avatar Garrett Beaty Committed by Commit Bot

Fix up the main console to match the chromium subwaterfall console.

The LUCI Milo lint check wasn't correctly set up when luci-milo.cfg was
migrated to starlark, so there are some discrepancies between the main
console and the chromium subwaterfall console right now.

Change-Id: Ib27d6d2c5a5ba30e3e7ab52db9ebd01557d48508
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1879693
Auto-Submit: Garrett Beaty <gbeaty@chromium.org>
Reviewed-by: default avatarStephen Martinis <martiniss@chromium.org>
Commit-Queue: Stephen Martinis <martiniss@chromium.org>
Cr-Commit-Position: refs/heads/master@{#709145}
parent dd9e1e90
...@@ -36,12 +36,22 @@ luci.console_view( ...@@ -36,12 +36,22 @@ luci.console_view(
), ),
luci.console_view_entry( luci.console_view_entry(
builder = 'ci/win32-archive-rel', builder = 'ci/win32-archive-rel',
category = 'chromium|win-rel', category = 'chromium|win|rel',
short_name = '32', short_name = '32',
), ),
luci.console_view_entry( luci.console_view_entry(
builder = 'ci/win-archive-rel', builder = 'ci/win-archive-rel',
category = 'chromium|win-rel', category = 'chromium|win|rel',
short_name = '64',
),
luci.console_view_entry(
builder = 'ci/win32-archive-dbg',
category = 'chromium|win|dbg',
short_name = '32',
),
luci.console_view_entry(
builder = 'ci/win-archive-dbg',
category = 'chromium|win|dbg',
short_name = '64', short_name = '64',
), ),
luci.console_view_entry( luci.console_view_entry(
......
...@@ -9413,12 +9413,22 @@ consoles: < ...@@ -9413,12 +9413,22 @@ consoles: <
> >
builders: < builders: <
name: "buildbucket/luci.chromium.ci/win32-archive-rel" name: "buildbucket/luci.chromium.ci/win32-archive-rel"
category: "chromium|win-rel" category: "chromium|win|rel"
short_name: "32" short_name: "32"
> >
builders: < builders: <
name: "buildbucket/luci.chromium.ci/win-archive-rel" name: "buildbucket/luci.chromium.ci/win-archive-rel"
category: "chromium|win-rel" category: "chromium|win|rel"
short_name: "64"
>
builders: <
name: "buildbucket/luci.chromium.ci/win32-archive-dbg"
category: "chromium|win|dbg"
short_name: "32"
>
builders: <
name: "buildbucket/luci.chromium.ci/win-archive-dbg"
category: "chromium|win|dbg"
short_name: "64" short_name: "64"
> >
builders: < builders: <
......
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