{% for run in runs|sort(attribute='id', reverse=True) %}
{{ run.id }} {% if run.git.dirty %}dirty{% endif %}
crashlink {{ run.context.version }} {% if run.git.is_release %} — release build {% else %} — {{ run.git.branch }}@{{ run.git.commit }} {% endif %}
{{ run.status }} — {{ run.cases|length }} cases
{% set avg_sim = run.avg_similarity() %} {% if avg_sim is not none %}
avg opcode similarity: {{ (avg_sim * 100)|round(1) }}%
{% endif %}
{% endfor %}