diff options
author | Kevin Hilman <khilman@baylibre.com> | 2017-08-22 16:07:47 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2017-09-01 15:52:07 -0700 |
commit | 05146fa425d94a77ba35b43ac3b0a5c633163d4e (patch) | |
tree | 1d68bd51a1dfe8cc6c5e19fe517dbb19f3b67725 /templates/base/agl-base.jinja2 | |
parent | 263fa00cd42334c69897ebad72fcd9d6acd89aeb (diff) |
initial snapshot: LAVA job creation based on templates
Change-Id: I5d545d3531f4c4190453724738076bd4eddfc4d6
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Loys Ollivier <lollivier@baylibre.com>
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'templates/base/agl-base.jinja2')
-rw-r--r-- | templates/base/agl-base.jinja2 | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/templates/base/agl-base.jinja2 b/templates/base/agl-base.jinja2 new file mode 100644 index 0000000..1119aaa --- /dev/null +++ b/templates/base/agl-base.jinja2 @@ -0,0 +1,36 @@ +{%- extends 'base/agl-base-defaults.jinja2' %} +{%- block job %} +{%- block metadata %} +metadata: + image.type: 'AGL' +{% endblock %} +{%- block main %} +device_type: {{ device_type }} +job_name: {{ name }} + +timeouts: + job: + minutes: {{ job_timeout }} + action: + minutes: {{ action_timeout }} + connection: + minutes: {{ connection_timeout }} +priority: {{ priority }} +visibility: public +{% endblock %} +{%- block actions %} +actions: +{%- block deploy %} +- deploy: + timeout: + minutes: {{ deploy_timeout }} +{%- endblock %} +{%- block boot %} +{% endblock %} +{%- block tests %} +{%-for test_template in test_templates %} +{% include test_template %} +{%- endfor %} +{% endblock %} +{% endblock %} +{% endblock %} |