summaryrefslogtreecommitdiff
path: root/doc/invocations-http-server/templates/invocation.html
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2025-05-06 09:54:59 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2025-05-06 13:09:36 +0200
commitca8fd841736ca65fa4292887052c78243512962a (patch)
tree3b8d1acde9debb5dc15a27583a776c0d08a582c6 /doc/invocations-http-server/templates/invocation.html
parent169621189b6c35a1f15c16d3fe392732659ab5b0 (diff)
downloadjustbuild-ca8fd841736ca65fa4292887052c78243512962a.tar.gz
Invocation server: present new exit codes and analysis erros
Diffstat (limited to 'doc/invocations-http-server/templates/invocation.html')
-rw-r--r--doc/invocations-http-server/templates/invocation.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html
index b09ca0ac..bdcbb623 100644
--- a/doc/invocations-http-server/templates/invocation.html
+++ b/doc/invocations-http-server/templates/invocation.html
@@ -115,6 +115,15 @@ Inocations {{invocation | e}}
</ul>
{% if have_profile %}
+{% if analysis_errors %}
+<h2>Analysis errors</h2>
+<ul>
+ {% for error in analysis_errors %}
+ <li> <pre>{{ error | e}}</pre></li>
+ {% endfor %}
+</ul>
+{% else %}
+{% if exit_code == 1 or exit_code == 2 %}
<h2>Failed actions</h2>
{% if failed_actions %}
<ul>
@@ -141,6 +150,8 @@ In order of decreasing run time.
{% else %}
<i>(none)</i>
{% endif %}
+{% endif %}
+{% endif %}
{% else %}
<b>No profiling data available; invocation data is not (yet) complete.</b>
{% endif %}