Clean up LAVA job definitions. Signed-off-by: Valentine Burley <valentine.burley@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34424>
177 lines
5.6 KiB
YAML
177 lines
5.6 KiB
YAML
variables:
|
|
LAVA_SSH_CLIENT_IMAGE: "${CI_REGISTRY_IMAGE}/alpine/x86_64_lava_ssh_client:${ALPINE_X86_64_LAVA_SSH_TAG}--${MESA_TEMPLATES_COMMIT}"
|
|
|
|
|
|
.lava-test:
|
|
# Cancel job if a newer commit is pushed to the same branch
|
|
interruptible: true
|
|
# The jobs themselves shouldn't actually run for an hour, of course.
|
|
# Jobs are picked up greedily by a GitLab CI runner which is deliberately
|
|
# overprovisioned compared to the number of available devices. They are
|
|
# submitted to the LAVA co-ordinator with a job priority which gives
|
|
# pre-merge priority over everyone else. User-submitted and nightly jobs
|
|
# can thus spend ages just waiting around in a queue to be run at some
|
|
# point as they get pre-empted by other things.
|
|
# Non-queue time has strict timeouts for each stage, e.g. for downloading
|
|
# the artifacts, booting the device, device setup, running the tests, etc,
|
|
# which is handled by LAVA itself.
|
|
# So the only reason we should see anyone bouncing off this timeout is due
|
|
# to a lack of available devices to run the jobs.
|
|
timeout: 1h
|
|
variables:
|
|
GIT_STRATEGY: none # testing doesn't build anything from source
|
|
FDO_CI_CONCURRENT: 6 # should be replaced by per-machine definitions
|
|
# the dispatchers use this to cache data locally
|
|
LAVA_HTTP_CACHE_URI: "http://caching-proxy/cache/?uri="
|
|
# base system generated by the container build job, shared between many pipelines
|
|
BASE_SYSTEM_HOST_PREFIX: "${S3_HOST}/${S3_KERNEL_BUCKET}"
|
|
BASE_SYSTEM_MAINLINE_HOST_PATH: "${BASE_SYSTEM_HOST_PREFIX}/${FDO_UPSTREAM_REPO}/${DISTRIBUTION_TAG}/${DEBIAN_ARCH}"
|
|
BASE_SYSTEM_FORK_HOST_PATH: "${BASE_SYSTEM_HOST_PREFIX}/${CI_PROJECT_PATH}/${DISTRIBUTION_TAG}/${DEBIAN_ARCH}"
|
|
# per-job build artifacts
|
|
JOB_ROOTFS_OVERLAY_PATH: "${JOB_ARTIFACTS_BASE}/job-rootfs-overlay.tar.gz"
|
|
JOB_RESULTS_PATH: "${JOB_ARTIFACTS_BASE}/results.tar.zst"
|
|
LAVA_S3_ARTIFACT_NAME: "mesa-${ARCH}-default-debugoptimized"
|
|
S3_ARTIFACT_NAME: "mesa-python-ci-artifacts"
|
|
S3_RESULTS_UPLOAD: "${JOB_ARTIFACTS_BASE}"
|
|
PIGLIT_NO_WINDOW: 1
|
|
VISIBILITY_GROUP: "Collabora+fdo"
|
|
STORAGE_MAINLINE_HOST_PATH: "${BASE_SYSTEM_HOST_PREFIX}/${FDO_UPSTREAM_REPO}/${DATA_STORAGE_PATH}"
|
|
STORAGE_FORK_HOST_PATH: "${BASE_SYSTEM_HOST_PREFIX}/${CI_PROJECT_PATH}/${DATA_STORAGE_PATH}"
|
|
before_script:
|
|
- !reference [.download_s3, before_script]
|
|
script:
|
|
- . artifacts/setup-test-env.sh
|
|
- ./artifacts/lava/lava-submit.sh
|
|
artifacts:
|
|
name: "${CI_PROJECT_NAME}_${CI_JOB_NAME}"
|
|
when: always
|
|
paths:
|
|
- results/
|
|
exclude:
|
|
- results/*.shader_cache
|
|
reports:
|
|
junit: results/junit.xml
|
|
tags:
|
|
- $RUNNER_TAG
|
|
after_script:
|
|
- curl -L --retry 4 -f --retry-connrefused --retry-delay 30 -s "https://${JOB_RESULTS_PATH}" | tar --warning=no-timestamp --zstd -x
|
|
needs:
|
|
- !reference [.required-for-hardware-jobs, needs]
|
|
- job: alpine/x86_64_lava_ssh_client
|
|
artifacts: false
|
|
- job: debian/x86_64_pyutils
|
|
artifacts: false
|
|
- job: python-artifacts
|
|
artifacts: false
|
|
|
|
.lava-test:arm32:
|
|
variables:
|
|
ARCH: arm32
|
|
DEBIAN_ARCH: armhf
|
|
KERNEL_IMAGE_NAME: zImage
|
|
KERNEL_IMAGE_TYPE: "zimage"
|
|
BOOT_METHOD: u-boot
|
|
extends:
|
|
- .use-debian/arm64_build # for same $MESA_ARTIFACTS_TAG as in kernel+rootfs_arm32
|
|
- .use-debian/x86_64_pyutils
|
|
- .lava-test
|
|
- .use-kernel+rootfs-arm
|
|
needs:
|
|
- !reference [.lava-test, needs]
|
|
- job: kernel+rootfs_arm32
|
|
artifacts: false
|
|
- job: debian-arm32
|
|
artifacts: false
|
|
|
|
.lava-test-deqp:arm32:
|
|
extends:
|
|
- .lava-test:arm32
|
|
variables:
|
|
HWCI_TEST_SCRIPT: "/install/deqp-runner.sh"
|
|
|
|
.lava-test:arm64:
|
|
variables:
|
|
ARCH: arm64
|
|
DEBIAN_ARCH: arm64
|
|
KERNEL_IMAGE_NAME: Image
|
|
KERNEL_IMAGE_TYPE: "image"
|
|
BOOT_METHOD: u-boot
|
|
extends:
|
|
- .use-debian/arm64_build # for same $MESA_ARTIFACTS_TAG as in kernel+rootfs_arm64
|
|
- .use-debian/x86_64_pyutils
|
|
- .lava-test
|
|
- .use-kernel+rootfs-arm
|
|
needs:
|
|
- !reference [.lava-test, needs]
|
|
- job: kernel+rootfs_arm64
|
|
artifacts: false
|
|
- job: debian-arm64
|
|
artifacts: false
|
|
|
|
.lava-test-deqp:arm64:
|
|
variables:
|
|
HWCI_TEST_SCRIPT: "/install/deqp-runner.sh"
|
|
extends:
|
|
- .lava-test:arm64
|
|
|
|
.lava-test:x86_64:
|
|
variables:
|
|
ARCH: x86_64
|
|
DEBIAN_ARCH: amd64
|
|
KERNEL_IMAGE_NAME: bzImage
|
|
KERNEL_IMAGE_TYPE: "zimage"
|
|
BOOT_METHOD: u-boot
|
|
extends:
|
|
- .use-debian/x86_64_build-base # for same $MESA_ARTIFACTS_BASE_TAG as in kernel+rootfs_x86_64
|
|
- .use-debian/x86_64_pyutils
|
|
- .lava-test
|
|
- .use-kernel+rootfs-x86_64
|
|
needs:
|
|
- !reference [.lava-test, needs]
|
|
- job: kernel+rootfs_x86_64
|
|
artifacts: false
|
|
- job: debian-testing
|
|
artifacts: false
|
|
|
|
.lava-test-deqp:x86_64:
|
|
variables:
|
|
HWCI_TEST_SCRIPT: "/install/deqp-runner.sh"
|
|
extends:
|
|
- .lava-test:x86_64
|
|
|
|
.lava-piglit-traces:
|
|
variables:
|
|
HWCI_TEST_SCRIPT: "/install/piglit/piglit-traces.sh"
|
|
# until we overcome Infrastructure issues, give traces extra 5 min before timeout
|
|
DEVICE_HANGING_TIMEOUT_SEC: 600
|
|
PIGLIT_REPLAY_DEVICE_NAME: "gl-${GPU_VERSION}"
|
|
PIGLIT_RESULTS: "${GPU_VERSION}-replay"
|
|
artifacts:
|
|
reports:
|
|
junit: results/junit.xml
|
|
|
|
.lava-piglit-traces:x86_64:
|
|
extends:
|
|
- .lava-test:x86_64
|
|
- .lava-piglit-traces
|
|
|
|
.lava-piglit-traces:arm32:
|
|
extends:
|
|
- .lava-test:arm32
|
|
- .lava-piglit-traces
|
|
|
|
.lava-piglit-traces:arm64:
|
|
extends:
|
|
- .lava-test:arm64
|
|
- .lava-piglit-traces
|
|
|
|
.lava-fluster:
|
|
variables:
|
|
FLUSTER_RESULTS: "${GPU_VERSION}-${FLUSTER_CODEC}"
|
|
HWCI_TEST_SCRIPT: "/install/fluster/fluster-runner.sh"
|
|
|
|
.lava-fluster:x86_64:
|
|
extends:
|
|
- .lava-fluster
|
|
|