Skip to content
Snippets Groups Projects
Commit f43a3a0b authored by Denis Pynkin's avatar Denis Pynkin
Browse files

lava: fix variables quoting for AUM tests


Without quoting they could be assumed as number which will lead to
incorrect usage. For instance build `20210119.0130` was cut to
`20210119.013` leading to incorrect path to delta URL construction.

Signed-off-by: default avatarDenis Pynkin <denis.pynkin@collabora.com>
parent 718fcc25
No related branches found
No related tags found
1 merge request!246v2022dev1: lava: fix variables quoting for AUM tests
...@@ -22,14 +22,14 @@ job_name: Ostree updater test {{aum_test}} on {{release_version}} {{pretty}} {{i ...@@ -22,14 +22,14 @@ job_name: Ostree updater test {{aum_test}} on {{release_version}} {{pretty}} {{i
name: {{test_name}}-phase-{{phase}} name: {{test_name}}-phase-{{phase}}
{% endif %} {% endif %}
params: params:
RELEASE: {{release_version}} RELEASE: '{{release_version}}'
ARCH: {{arch}} ARCH: '{{arch}}'
BASEURL: {{baseurl}} BASEURL: '{{baseurl}}'
IMGPATH: {{imgpath}} IMGPATH: '{{imgpath}}'
IMGDATE: {{image_date}} IMGDATE: '{{image_date}}'
IMGTYPE: {{image_type}} IMGTYPE: '{{image_type}}'
IMGNAME: {{image_name}} IMGNAME: '{{image_name}}'
BOARD: {{board}} BOARD: '{{board}}'
{% endmacro %} {% endmacro %}
{% for i in range(0,7) %} {% for i in range(0,7) %}
{{ run_test(aum_test, i, 6) }} {{ run_test(aum_test, i, 6) }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment