From 668cc6dc0cc8e5d9311bf7e15467863ef5be656a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Roukala=20=28n=C3=A9=20Peres=29?= Date: Wed, 22 Jan 2025 14:42:32 +0200 Subject: [PATCH] ci/b2c: allow jobs to select a file in the dtb url MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This makes it possible to have a single DTB url serving multiple DUTs, without paying much of a cost for it. Signed-off-by: Martin Roukala (né Peres) Reviewed-by: Eric Engestrom Part-of: --- .gitlab-ci/b2c/b2c.yml.jinja2.jinja2 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci/b2c/b2c.yml.jinja2.jinja2 b/.gitlab-ci/b2c/b2c.yml.jinja2.jinja2 index 21997335aa4..790a4fedb3d 100644 --- a/.gitlab-ci/b2c/b2c.yml.jinja2.jinja2 +++ b/.gitlab-ci/b2c/b2c.yml.jinja2.jinja2 @@ -106,4 +106,9 @@ deployment: {% if dtb_url %} dtb: url: '{{ dtb_url }}' +{% if dtb_match %} + format: + archive: + match: "{{ dtb_match }}" +{% endif %} {% endif %}