mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-07 23:50:11 +01:00
We should be explicit that we are cancelling jobs once the script finds some log messages that are linked with known issues. That means the script preemptively retried the job without giving chances to recover. Adds magenta color to cancelled jobs. Signed-off-by: Guilherme Gallo <guilherme.gallo@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17389>
10 lines
261 B
Python
10 lines
261 B
Python
CONSOLE_LOG = {
|
|
"FG_GREEN": "\x1b[1;32;5;197m",
|
|
"FG_RED": "\x1b[1;38;5;197m",
|
|
"FG_YELLOW": "\x1b[1;33;5;197m",
|
|
"FG_MAGENTA": "\x1b[1;35;5;197m",
|
|
"RESET": "\x1b[0m",
|
|
"UNDERLINED": "\x1b[3m",
|
|
"BOLD": "\x1b[1m",
|
|
"DIM": "\x1b[2m",
|
|
}
|