From fabb8f90506c1a09dd0cc3776f6a8eaa66036568 Mon Sep 17 00:00:00 2001 From: Sascha Roloff Date: Tue, 20 May 2025 17:57:33 +0200 Subject: invocation server: add critical-path computation --- .../templates/critical_path.html | 27 ++++++++++++++++++++++ .../templates/invocation.html | 3 +++ 2 files changed, 30 insertions(+) create mode 100644 doc/invocations-http-server/templates/critical_path.html (limited to 'doc/invocations-http-server/templates') diff --git a/doc/invocations-http-server/templates/critical_path.html b/doc/invocations-http-server/templates/critical_path.html new file mode 100644 index 00000000..8d818809 --- /dev/null +++ b/doc/invocations-http-server/templates/critical_path.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} +{% block heading %} +Invocations {{invocation | e}} +{% endblock %} + +{% from 'macros.html' import show_action %} + +{% block content %} +

Critical path for {{ invocation | e }}

+ +

Overview

+ +{% endblock %} diff --git a/doc/invocations-http-server/templates/invocation.html b/doc/invocations-http-server/templates/invocation.html index c90d4272..6ccb0a56 100644 --- a/doc/invocations-http-server/templates/invocation.html +++ b/doc/invocations-http-server/templates/invocation.html @@ -78,6 +78,9 @@ Invocation {{invocation | e}} {% if exit_code != None %}
  • Exit code: {{ exit_code | e }}
  • {% endif %} + {% if not fully_cached %} +
  • Critical path
  • + {% endif %} {% if artifacts %}
  • -- cgit v1.2.3