1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-07-16 03:47:19 +00:00

scripts/machine-summary: write per-machine reports with more details

Rename the updates.html format to just 'report'.

This report has the existing overview as the index.html, and then
per-machine files are written with the patch breakdown.

Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Jon Mason <jon.mason@arm.com>
This commit is contained in:
Ross Burton
2022-01-19 21:20:49 +00:00
committed by Jon Mason
parent b1b0f37da7
commit c4b34740cf
5 changed files with 160 additions and 48 deletions
+35
View File
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>
<head>
<title>{% block title %}{% endblock %}</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css">
</head>
<body>
<section class="section">
{# TODO use position: sticky to glue this to the top #}
<nav class="breadcrumb is-large">
<ul>
<li class="{{ "is-active" if machine is undefined }}">
<a href="index.html">Recipe Report</a>
</li>
{% if machine is defined %}
<li class="is-active">
<a href="#">{{machine}}</a>
</li>
{% endif %}
</ul>
</nav>
<div class="content">
{% block content %}{% endblock %}
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
Generated by <code>machine-summary</code> at {{ timestamp }}.
</div>
</footer>
</body>
</html>