Hi Neil and all,
how do I add per-action comments or meta data so that I can parse them from the result bundle:
the following for instance will pass the schema validation, but the result bundle will degenerate into keeping only the last "comment" metadata entry, while I'd like a per-action metadata entry.
{ "command": "lava_command_run", "metadata": { "comment": "comment1" }, "parameters": { "commands": [ "uname -a" ] } }, { "command": "lava_command_run", "metadata": { "comment": "comment2" }, "parameters": { "commands": [ "ls -al" ] } },
The result bundle will contain the same metadata for each lava-command:
"attributes": { "comment": "comment2", <=== same value "image.type": "kernel-ci", .... snip ...
"logging_level": "DEBUG", "device.tree": "omap4-panda-es.dtb" }, "test_id": "lava-command"
IOW, how do I assign a brief description to an action ?
Thanks and regards, Marc.