1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-01-11 15:00:39 +00:00
Files
meta-arm/scripts/machine-summary-overview.txt.jinja
Ross Burton b1d667c396 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>
2021-08-12 09:49:19 -04:00

13 lines
284 B
Django/Jinja

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 %}