Compared to the existing Debian-based x86_64_pyutils container, this Alpine-based variant reduces the image size by approximately 83%. Include all the necessary python artifacts, including lava_job_submitter in the container to avoid having to download them at the start of each test job. Signed-off-by: Valentine Burley <valentine.burley@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34980>
20 lines
553 B
Python
20 lines
553 B
Python
# When changing this file, you need to bump the following
|
|
# .gitlab-ci/image-tags.yml tags:
|
|
# ALPINE_X86_64_LAVA_TRIGGER_TAG
|
|
|
|
CONSOLE_LOG = {
|
|
"FG_GREEN": "\x1b[0;32m",
|
|
"FG_BOLD_GREEN": "\x1b[0;1;32m",
|
|
"FG_RED": "\x1b[0;38;5;197m",
|
|
"FG_BOLD_RED": "\x1b[0;1;38;5;197m",
|
|
"FG_YELLOW": "\x1b[0;33m",
|
|
"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",
|
|
"DIM": "\x1b[2m",
|
|
}
|