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

lava: add flexible options for unpack with tar


For AUM tests unpack of overlay with tests in verbose mode
produce too lot of almost useless information. This is the reason
why the job log exceeding 5MB limit and should be downloaded as
plain text which is hard to analyze.

Added common macros `tar_unpack_cmd()` which create dynamic unpack
string depending on variable `tar_additional_options` ('-v' by default).

Additional verbose option for `tar` was switched off for all AUM tests
to simplify log analysis in WEb interface.

It is possible to override default options with `lqa` command, for
example: `lqa -t tar_additional_options:""`.

Signed-off-by: default avatarDenis Pynkin <denis.pynkin@collabora.com>
parent f43a3a0b
No related branches found
No related tags found
1 merge request!246v2022dev1: lava: fix variables quoting for AUM tests
Pipeline #184284 passed
job_name: Ostree updater test {{aum_test}} on {{release_version}} {{pretty}} {{image_date}}
{% import 'common-boot-macros.yaml' as boot with context -%}
{% if tar_additional_options is not defined %}
{% set tar_additional_options = "" %}
{% endif %}
{% if device_type == 'qemu' %}
{% include 'common-qemu-boot-tpl.yaml' %}
{% else %}
......
......@@ -13,3 +13,10 @@
{{baseurl}}/{{imgpath}}/{{image_date}}/{{arch}}/{{image_type}}/{{image_name}}.img.{{ext}}
{%- endif %}
{%- endmacro %}
{% macro tar_unpack_cmd() -%}
{% if tar_additional_options is not defined -%}
{% set tar_additional_options = "-v" -%}
{% endif -%}
tar {{tar_additional_options}} -C / -z -x
{%- endmacro %}
......@@ -5,7 +5,7 @@
method: {{boot_method}}
commands: {{boot_commands}}
transfer_overlay:
download_command: sudo mount -o remount,rw / ; connmand-wait-online ; df -h; sh -c 'busybox wget $1 -O -| sudo tar -v -C / -z -x' --
download_command: sudo mount -o remount,rw / ; connmand-wait-online ; df -h; sh -c 'busybox wget $1 -O -| {{boot.tar_unpack_cmd()}}' --
unpack_command: df -h; echo
parameters:
shutdown-message: "reboot: Restarting system"
......
......@@ -106,7 +106,7 @@ actions:
method: {{boot_method}}
commands: {{boot_commands}}
transfer_overlay:
download_command: sudo mount -o remount,rw / ; connmand-wait-online ; df -h; sh -c 'busybox wget $1 -O -| sudo tar -v -C / -z -x' --
download_command: sudo mount -o remount,rw / ; connmand-wait-online ; df -h; sh -c 'busybox wget $1 -O -| sudo {{boot.tar_unpack_cmd()}}' --
unpack_command: df -h; echo
parameters:
shutdown-message: "reboot: Restarting system"
......
......@@ -61,7 +61,7 @@ actions:
method: qemu
media: tmpfs
transfer_overlay:
download_command: sudo mount -o remount,rw / ; connmand-wait-online ; df -h; sh -c 'busybox wget $1 -O -| sudo tar -v -C / -z -x' --
download_command: sudo mount -o remount,rw / ; connmand-wait-online ; df -h; sh -c 'busybox wget $1 -O -| sudo {{boot.tar_unpack_cmd()}}' --
unpack_command: df -h; echo
parameters:
shutdown-message: "reboot: Restarting system"
......
......@@ -69,7 +69,7 @@ actions:
method: {{boot_method}}
commands: nfs
transfer_overlay:
download_command: sudo mount -o remount,rw / ; df -h; sh -c 'busybox wget $1 -O -| sudo tar -v -C / -z -x' --
download_command: sudo mount -o remount,rw / ; df -h; sh -c 'busybox wget $1 -O -| sudo {{boot.tar_unpack_cmd()}}' --
unpack_command: df -h; echo
auto_login:
login_prompt: 'apertis login:'
......
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