mirror of
https://gitee.com/openharmony/third_party_mesa3d
synced 2024-12-18 22:07:35 +00:00
463dbbffa8
When introducing/removing these files, it's easy to forget to update the
yml to point to them. Instead of requiring the separate update, just have
the runner script pick the right one from a single per-gpu variable.
As a result, we now pick up the new deqp-lvp-skips.txt that was added but
not conected. This also required moving some bypass flakes from the
shared a630 flakes list to a separate list, which is a feature because now
we'd notice the introduction of flakes to the gmem path.
Fixes: ab79e6b8e3
("ci: skip failing test on lavapipe")
Acked-by: Daniel Stone <daniels@collabora.com>
Reviewed-by: Juan A. Suarez <jasuarez@igalia.com>
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8147>
112 lines
2.9 KiB
Django/Jinja
112 lines
2.9 KiB
Django/Jinja
job_name: mesa-deqp-{{ deqp_version }}-{{ gpu_version }} {{ pipeline_info }}
|
|
device_type: {{ device_type }}
|
|
context:
|
|
extra_nfsroot_args: " init=/init rootwait"
|
|
timeouts:
|
|
job:
|
|
minutes: 40
|
|
action:
|
|
minutes: 10
|
|
actions:
|
|
power-off:
|
|
seconds: 30
|
|
priority: 75
|
|
visibility: public
|
|
{% if tags %}
|
|
{% set lavatags = tags.split(',') %}
|
|
tags:
|
|
{% for tag in lavatags %}
|
|
- {{ tag }}
|
|
{% endfor %}
|
|
{% endif %}
|
|
actions:
|
|
- deploy:
|
|
timeout:
|
|
minutes: 10
|
|
to: tftp
|
|
kernel:
|
|
url: {{ base_artifacts_url }}/{{ kernel_image_name }}
|
|
{% if kernel_image_type %}
|
|
{{ kernel_image_type }}
|
|
{% endif %}
|
|
nfsrootfs:
|
|
url: {{ base_artifacts_url }}/lava-rootfs.tgz
|
|
compression: gz
|
|
{% if dtb %}
|
|
dtb:
|
|
url: {{ base_artifacts_url }}/{{ dtb }}.dtb
|
|
{% endif %}
|
|
os: oe
|
|
- boot:
|
|
timeout:
|
|
minutes: 5
|
|
method: {{ boot_method }}
|
|
{% if boot_method == "fastboot" %}
|
|
{#
|
|
For fastboot, LAVA doesn't know how to unpack the rootfs/apply overlay/repack,
|
|
so we transfer the overlay over the network after boot.
|
|
#}
|
|
transfer_overlay:
|
|
download_command: wget -S --progress=dot:giga
|
|
unpack_command: tar -C / -xzf
|
|
{% else %}
|
|
commands: nfs
|
|
{% endif %}
|
|
prompts:
|
|
- 'lava-shell:'
|
|
- 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 || echo possibly already mounted
|
|
- mkdir -p /dev/pts
|
|
- mount -t devpts devpts /dev/pts
|
|
- echo "nameserver 8.8.8.8" > /etc/resolv.conf
|
|
- for i in 1 2 3; do sntp -sS pool.ntp.org && break || sleep 2; done
|
|
|
|
- modprobe amdgpu || true
|
|
|
|
- DEVFREQ_GOVERNOR=`find /sys/devices -name governor | grep gpu || true`
|
|
- echo performance > $DEVFREQ_GOVERNOR || true
|
|
|
|
- GPU_AUTOSUSPEND=`find /sys/devices -name autosuspend_delay_ms | grep gpu | head -1`
|
|
- echo -1 > $GPU_AUTOSUSPEND || true
|
|
|
|
{% if env_vars %}
|
|
- export {{ env_vars }}
|
|
{% endif %}
|
|
|
|
# deqp-runner.sh assumes some stuff is in pwd
|
|
- cd /
|
|
|
|
- wget -S --progress=dot:giga -O- {{ mesa_url }} | tar -xz
|
|
|
|
- export DEQP_NO_SAVE_RESULTS=1
|
|
- export GPU_VERSION={{ gpu_version }}
|
|
- export DEQP_VER={{ deqp_version }}
|
|
- export LIBGL_DRIVERS_PATH=`pwd`/install/lib/dri
|
|
|
|
- "if sh /install/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
|