mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-10 20:27:21 +00:00
0269532fa8
* Add templates * Add folder for local storage of the digests * Add first draft of the changelog scripts * Enable Audits in the change template * Fixes for Polkadot * Fix templating issue in case there is no high prio change * Fix Ruby setup * Remove shell * Fix chain names * Fix ENV * Fix how to get runtime * Fix runtime_dir * Fix context location * Pin changelogerator to a specific version
18 lines
567 B
Plaintext
18 lines
567 B
Plaintext
{# This include shows the list and details of the runtimes #}
|
|
{%- import "runtime.md.tera" as m_r -%}
|
|
|
|
## Runtimes
|
|
|
|
{% set rtm = srtool[0] -%}
|
|
|
|
The information about the runtimes included in this release can be found below.
|
|
The runtimes have been built using [{{ rtm.data.gen }}](https://github.com/paritytech/srtool) and `{{ rtm.data.rustc }}`.
|
|
|
|
{%- for runtime in srtool | sort(attribute="name") %}
|
|
{%- set HIDE_VAR = "HIDE_SRTOOL_" ~ runtime.name | upper %}
|
|
{%- if not env is containing(HIDE_VAR) %}
|
|
|
|
{{ m_r::runtime(runtime=runtime) }}
|
|
{%- endif %}
|
|
{%- endfor %}
|