Commit 559cb622 by Jamie Madill Committed by Commit Bot

infra/config: Rename console/list views.

The new simpler names "ci" and "try" prevent URLs with space characters. Bug: angleproject:5559 Change-Id: I3e16f88553cc979cdddf2f2e5ff34b2be74b7dae Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2737059Reviewed-by: 's avatarYuly Novikov <ynovikov@chromium.org> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 2f737c25
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
# https://luci-config.appspot.com/schemas/projects:luci-milo.cfg # https://luci-config.appspot.com/schemas/projects:luci-milo.cfg
consoles { consoles {
id: "CI Console View" id: "ci"
name: "ANGLE CI Builders" name: "ANGLE CI Builders"
repo_url: "https://chromium.googlesource.com/angle/angle" repo_url: "https://chromium.googlesource.com/angle/angle"
refs: "regexp:refs/heads/master" refs: "regexp:refs/heads/master"
...@@ -102,7 +102,7 @@ consoles { ...@@ -102,7 +102,7 @@ consoles {
} }
} }
consoles { consoles {
id: "Try List View" id: "try"
name: "ANGLE Try Builders" name: "ANGLE Try Builders"
builders { builders {
name: "buildbucket/luci.angle.try/linux-clang-dbg" name: "buildbucket/luci.angle.try/linux-clang-dbg"
......
...@@ -203,14 +203,14 @@ def angle_standalone_builder(name, clang, debug, cpu, uwp = False, trace_tests = ...@@ -203,14 +203,14 @@ def angle_standalone_builder(name, clang, debug, cpu, uwp = False, trace_tests =
short_name = "dbg" if debug else "rel" short_name = "dbg" if debug else "rel"
luci.console_view_entry( luci.console_view_entry(
console_view = "CI Console View", console_view = "ci",
builder = "ci/" + name, builder = "ci/" + name,
category = config + "|" + os + "|" + compiler + "|" + cpu, category = config + "|" + os + "|" + compiler + "|" + cpu,
short_name = short_name, short_name = short_name,
) )
luci.list_view_entry( luci.list_view_entry(
list_view = "Try List View", list_view = "try",
builder = "try/" + name, builder = "try/" + name,
) )
...@@ -297,19 +297,19 @@ angle_standalone_builder("winuwp-x64-rel", clang = False, debug = False, cpu = " ...@@ -297,19 +297,19 @@ angle_standalone_builder("winuwp-x64-rel", clang = False, debug = False, cpu = "
# Views # Views
luci.console_view( luci.console_view(
name = "CI Console View", name = "ci",
title = "ANGLE CI Builders", title = "ANGLE CI Builders",
repo = "https://chromium.googlesource.com/angle/angle", repo = "https://chromium.googlesource.com/angle/angle",
refs = ["refs/heads/master"], refs = ["refs/heads/master"],
) )
luci.list_view( luci.list_view(
name = "Try List View", name = "try",
title = "ANGLE Try Builders", title = "ANGLE Try Builders",
) )
luci.list_view_entry( luci.list_view_entry(
list_view = "Try List View", list_view = "try",
builder = "try/presubmit", builder = "try/presubmit",
) )
......
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