summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorNeil Armstrong <narmstrong@baylibre.com>2020-03-05 15:19:15 +0100
committerMarge Bot <eric+marge@anholt.net>2020-03-16 11:16:27 +0000
commitbbdb4b1a6d9c1f211ef7e67f3dcdf92de24c3a67 (patch)
tree991445dd1858d6d77c822e32606b1cedb28cec0d /.gitlab-ci
parentfd1436440bd84d0b48fd7282b8f012ad382483ed (diff)
gitlab-ci/lava: fix handling of lava tags
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>
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/lava-deqp.yml.jinja23
1 files changed, 2 insertions, 1 deletions
diff --git a/.gitlab-ci/lava-deqp.yml.jinja2 b/.gitlab-ci/lava-deqp.yml.jinja2
index 6e6620e221f..3cd217291d4 100644
--- a/.gitlab-ci/lava-deqp.yml.jinja2
+++ b/.gitlab-ci/lava-deqp.yml.jinja2
@@ -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 %}