8e642848c2
* Introduce the asic_subtype field for adding the sub platform variants. It uses the value of TARGET_MACHINE variable in slave.mk.
30 lines
788 B
Django/Jinja
30 lines
788 B
Django/Jinja
---
|
|
build_version: '{{ build_version }}'
|
|
{% if debian_version is defined -%}
|
|
debian_version: '{{ debian_version }}'
|
|
{% endif -%}
|
|
{% if kernel_version is defined -%}
|
|
kernel_version: '{{ kernel_version }}'
|
|
{% endif -%}
|
|
asic_type: {{ asic_type }}
|
|
{% if asic_subtype is defined and asic_subtype != '' -%}
|
|
asic_subtype: '{{ asic_subtype }}'
|
|
{% endif -%}
|
|
commit_id: '{{ commit_id }}'
|
|
branch: '{{ branch }}'
|
|
{% if release is defined and release != '' -%}
|
|
release: '{{ release }}'
|
|
{% else -%}
|
|
release: 'none'
|
|
{% endif -%}
|
|
build_date: {{ build_date }}
|
|
build_number: {{ build_number }}
|
|
built_by: {{ built_by }}
|
|
{% if components is defined -%}
|
|
{% for component in components.split() | unique -%}
|
|
{% set name, version = component.split('==') -%}
|
|
{{ name }}: {{ version }}
|
|
{% endfor -%}
|
|
{% endif -%}
|
|
|