The lava tags was a python array not it's a gitlab CI string,
slit the string with periods in the jinja2 template to avoid having
the following tags :
tags:
- p
- a
- n
- f
- r
- o
- s
- t
instead of :
tags:
- panfrost
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4057>
priority: 75
visibility: public
{% if tags %}
+{% set lavatags = tags.split(',') %}
tags:
-{% for tag in tags %}
+{% for tag in lavatags %}
- {{ tag }}
{% endfor %}
{% endif %}