diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-13 14:20:20 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-05-13 14:51:08 +0200 |
commit | 8f14cdd6cacf3652de77f527eea3d5efca5cca62 (patch) | |
tree | 18964cb0c9daa5f97ac16b7c494283b68dcbb4a1 /doc/invocations-http-server/templates/invocation.html | |
parent | 13a4031450c34a087b1998540077b595938d29f0 (diff) | |
download | justbuild-8f14cdd6cacf3652de77f527eea3d5efca5cca62.tar.gz |
Invocation server: show actions with console output separately
Normally, actions are supposed to work silently, i.e., without writing
to stdout/stderr. So, if an action produces console output, it is
definitely worth looking at, even for cached actions. Therefore,
add a section after the failed actions showing those actions (if
not in the previous action). Also, always show duration (if known)
and if an action is cached (which can happen for the ones producing
console output).
Diffstat (limited to 'doc/invocations-http-server/templates/invocation.html')
-rw-r--r-- | doc/invocations-http-server/templates/invocation.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index 50d5690a..2ebebb86 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -38,6 +38,12 @@ Inocations {{invocation | e}} </ul> </li> {% endif %} + {% if action["duration"] %} + <li> duration: {{ action["duration"] | e }}</li> + {% endif %} + {% if action["cached"] %} + <li> cached: {{ action["cached"] | e }}</li> + {% endif %} {% if action["exit_code"] != 0 %} <li> exit code: {{ action["exit_code"] }}</li> {% endif %} @@ -187,6 +193,17 @@ Inocations {{invocation | e}} <i>(none)</i> {% endif %} +<h3>Other actions with console output</h3> +{% if output_actions %} +<ul> + {% for action in output_actions %} + {{ show_action(action) }} + {% endfor %} +</ul> +{% else %} +<i>(none)</i> +{% endif %} + <h3>Remaining non-cached actions</h3> {% if non_cached %} |