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>
27 lines
725 B
Python
27 lines
725 B
Python
# When changing this file, you need to bump the following
|
|
# .gitlab-ci/image-tags.yml tags:
|
|
# ALPINE_X86_64_LAVA_TRIGGER_TAG
|
|
|
|
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,
|
|
CI_JOB_TIMEOUT_MIN,
|
|
LAVA_TEST_OVERHEAD_MIN,
|
|
LAVA_TEST_CASE_TIMEOUT,
|
|
LAVA_TEST_SUITE_TIMEOUT,
|
|
)
|