mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 00:00:12 +01:00
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:
parent
3c7b53e27c
commit
970f37be09
2 changed files with 2 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue