ci/lava: Change default section colour to cyan
This matches the sections from the shell prints, which are quite nice. Signed-off-by: Daniel Stone <daniels@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31602>
This commit is contained in:
@@ -7,6 +7,7 @@ CONSOLE_LOG = {
|
||||
"FG_BOLD_YELLOW": "\x1b[0;1;33m",
|
||||
"FG_MAGENTA": "\x1b[0;35m",
|
||||
"FG_BOLD_MAGENTA": "\x1b[0;1;35m",
|
||||
"FG_CYAN": "\x1b[0;36m",
|
||||
"RESET": "\x1b[0m",
|
||||
"UNDERLINED": "\x1b[3m",
|
||||
"BOLD": "\x1b[1m",
|
||||
|
@@ -19,7 +19,7 @@ class GitlabSection:
|
||||
type: LogSectionType
|
||||
start_collapsed: bool = False
|
||||
escape: str = "\x1b[0K"
|
||||
colour: str = f"{CONSOLE_LOG['FG_GREEN']}"
|
||||
colour: str = f"{CONSOLE_LOG['FG_CYAN']}"
|
||||
__start_time: Optional[datetime] = field(default=None, init=False)
|
||||
__end_time: Optional[datetime] = field(default=None, init=False)
|
||||
|
||||
|
Reference in New Issue
Block a user