diff options
author | Khouloud Touil <ktouil@baylibre.com> | 2019-08-07 17:04:30 +0200 |
---|---|---|
committer | Khouloud Touil <ktouil@baylibre.com> | 2019-08-08 12:09:30 +0200 |
commit | 55c756f9846551f826ac82d079a692d37d5c77d2 (patch) | |
tree | 5b41de5987877880c8192a540683c086624cdb20 /templates/base | |
parent | e2df48ce0e435ef82efde7159b2f953206fa439f (diff) |
Add/use the new arguemnt --build-tags
Add new argument --build-tags to be used in the job template and to
be passed to the tests to be run along with using --device-tags.
Bug-AGL: SPEC-2721
Signed-off-by: Khouloud Touil <ktouil@baylibre.com>
Change-Id: I2fb4c3d0cb8cd1d0e3c36c1df55185cb4dde43c3
Diffstat (limited to 'templates/base')
-rw-r--r-- | templates/base/agl-base.jinja2 | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/templates/base/agl-base.jinja2 b/templates/base/agl-base.jinja2 index 0bc7188..20fc01f 100644 --- a/templates/base/agl-base.jinja2 +++ b/templates/base/agl-base.jinja2 @@ -14,6 +14,12 @@ tags: - {{ tag|lower }} {%- endfor %} {%- endif %} +{%- if BUILD_TAGS %} +build-tags: +{%- for tag in BUILD_TAGS %} +- {{ tag|lower }} +{%- endfor %} +{%- endif %} job_name: {{ name }} |