mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-11-24 07:50:26 +00:00
d62dd8b0cb
Take one step towards sharing code between the LAVA and non-LAVA jobs, with the goals of reducing maintenance burden and use of computational resources. The env var DEQP_NO_SAVE_RESULTS allows us to skip the procesing of the XML result files, which can take a long time and is not useful in the LAVA case as we are not uploading artifacts anywhere at the moment. Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Reviewed-by: Eric Anholt <eric@anholt.net>
88 lines
2.2 KiB
Django/Jinja
88 lines
2.2 KiB
Django/Jinja
job_name: mesa-deqp-{{ gpu_version }}
|
|
device_type: {{ lava_device_type }}
|
|
timeouts:
|
|
job:
|
|
minutes: 40
|
|
action:
|
|
minutes: 10
|
|
actions:
|
|
power-off:
|
|
seconds: 30
|
|
priority: 75
|
|
visibility: public
|
|
{% if tags %}
|
|
tags:
|
|
{% for tag in tags %}
|
|
- {{ tag }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
actions:
|
|
- deploy:
|
|
timeout:
|
|
minutes: 10
|
|
to: tftp
|
|
kernel:
|
|
url: {{ base_artifacts_url }}/{{ kernel_image_name }}
|
|
{{ kernel_image_type }}
|
|
ramdisk:
|
|
url: {{ base_artifacts_url }}/lava-rootfs-{{ arch }}.cpio.gz
|
|
compression: gz
|
|
dtb:
|
|
url: {{ base_artifacts_url }}/{{ device_type }}.dtb
|
|
os: oe
|
|
- boot:
|
|
timeout:
|
|
minutes: 5
|
|
method: {{ boot_method }}
|
|
commands: ramdisk
|
|
prompts:
|
|
- '#'
|
|
- test:
|
|
timeout:
|
|
minutes: 60
|
|
definitions:
|
|
- repository:
|
|
metadata:
|
|
format: Lava-Test Test Definition 1.0
|
|
name: deqp
|
|
description: "Mesa dEQP test plan"
|
|
os:
|
|
- oe
|
|
scope:
|
|
- functional
|
|
run:
|
|
steps:
|
|
- mount -t proc none /proc
|
|
- mount -t sysfs none /sys
|
|
- mount -t devtmpfs none /dev
|
|
- mkdir -p /dev/pts
|
|
- mount -t devpts devpts /dev/pts
|
|
|
|
- export MESA_GLES_VERSION_OVERRIDE=3.0
|
|
- export DEQP_PARALLEL=6
|
|
- export DEQP_NO_SAVE_RESULTS=1
|
|
- 'export DEQP_RUNNER_OPTIONS="--compact-display false --shuffle false"'
|
|
- export DEQP_EXPECTED_FAILS={{ fails_file }}
|
|
- export DEQP_SKIPS={{ skips_file }}
|
|
- export DEQP_VER={{ deqp_version }}
|
|
- export LIBGL_DRIVERS_PATH=`pwd`/install/lib/dri
|
|
|
|
# Put stuff where the runner script expects it
|
|
- mkdir artifacts
|
|
- mkdir results
|
|
- mkdir -p install/lib
|
|
- cp /deqp/$DEQP_EXPECTED_FAILS artifacts/.
|
|
- cp /deqp/$DEQP_SKIPS artifacts/.
|
|
- mv /mesa/lib/* install/lib/.
|
|
|
|
- "if sh /deqp/deqp-runner.sh; then
|
|
echo 'deqp: pass';
|
|
else
|
|
echo 'deqp: fail';
|
|
fi"
|
|
parse:
|
|
pattern: '(?P<test_case_id>\S*):\s+(?P<result>(pass|fail))'
|
|
from: inline
|
|
name: deqp
|
|
path: inline/mesa-deqp.yaml
|