
To absorb complexity from the building blocks to generate job definitions for each mode: - fastboot-uart - uboot-uart - uboot-ssh Signed-off-by: Guilherme Gallo <guilherme.gallo@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25912>
19 lines
490 B
Python
19 lines
490 B
Python
from .console_format import CONSOLE_LOG
|
|
from .gitlab_section import GitlabSection
|
|
from .lava_job import LAVAJob
|
|
from .lava_job_definition import LAVAJobDefinition
|
|
from .lava_proxy import call_proxy, setup_lava_proxy
|
|
from .log_follower import (
|
|
LogFollower,
|
|
fatal_err,
|
|
fix_lava_gitlab_section_log,
|
|
hide_sensitive_data,
|
|
print_log,
|
|
)
|
|
from .log_section import (
|
|
DEFAULT_GITLAB_SECTION_TIMEOUTS,
|
|
FALLBACK_GITLAB_SECTION_TIMEOUT,
|
|
LogSection,
|
|
LogSectionType,
|
|
)
|