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

scripts: add machine summary report tool

machine-summary.py is a tool to generate a report of what recipes and
versions are used for what machines, and what the latest upstream release
is.

Change-Id: Iecf21a14057df0fd1cb05be9b54c621dfbaddd94
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
2021-08-12 10:49:52 +01:00
committed by Jon Mason
parent 8f204c28da
commit b1d667c396
4 changed files with 189 additions and 0 deletions
@@ -0,0 +1,12 @@
Machine Overview
Generated at {{ timestamp }}.
{% for machine, data in data|dictsort %}
MACHINE: {{ machine }}
{% for recipe in recipes|sort %}
{% if recipe in data %}
{% set details = data[recipe] %}
{{ details.recipe }}: {{ details.version }}
{% endif %}
{% endfor %}
{% endfor %}