gitlab-ci/lava: fix handling of lava tags
authorNeil Armstrong <narmstrong@baylibre.com>
Thu, 5 Mar 2020 14:19:15 +0000 (15:19 +0100)
committerMarge Bot <eric+marge@anholt.net>
Mon, 16 Mar 2020 11:16:27 +0000 (11:16 +0000)
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>

.gitlab-ci/lava-deqp.yml.jinja2

index 6e6620e221fbb75fd267bc73baa06a833d823dc8..3cd217291d49c442893500199d485706978f4db2 100644 (file)
@@ -11,8 +11,9 @@ timeouts:
 priority: 75
 visibility: public
 {% if tags %}
+{% set lavatags = tags.split(',') %}
 tags:
-{% for tag in tags %}
+{% for tag in lavatags %}
   - {{ tag }}
 {% endfor %}
 {% endif %}