mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 23:21:02 +00:00
b46f07ff71
* fix tests Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * ZOMBIENET_INTEGRATION_TEST_SECONDARY_IMAGE Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * deleted by mistake Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * remove LOCAL_DIR override Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * Fix secondary image Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> * fix get BUILD_RELEASE_VERSION in pipeline --------- Signed-off-by: Andrei Sandu <andrei-mihail@parity.io> Co-authored-by: Javier Viola <javier@parity.io>
47 lines
1.3 KiB
TOML
47 lines
1.3 KiB
TOML
[settings]
|
|
timeout = 1000
|
|
bootnode = true
|
|
|
|
[relaychain.genesis.runtime.runtime_genesis_config.configuration.config]
|
|
max_validators_per_core = 1
|
|
needed_approvals = 2
|
|
|
|
[relaychain]
|
|
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
|
|
chain = "rococo-local"
|
|
chain_spec_command = "polkadot build-spec --chain rococo-local --disable-default-bootnode"
|
|
default_command = "polkadot"
|
|
|
|
[relaychain.default_resources]
|
|
limits = { memory = "4G", cpu = "2" }
|
|
requests = { memory = "2G", cpu = "1" }
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "honest-validator"
|
|
count = 3
|
|
args = ["-lparachain=debug,runtime=debug"]
|
|
|
|
[[relaychain.node_groups]]
|
|
image = "{{MALUS_IMAGE}}"
|
|
name = "malus-validator"
|
|
command = "malus suggest-garbage-candidate"
|
|
args = ["-lparachain=debug,MALUS=trace"]
|
|
count = 1
|
|
|
|
{% for id in range(2000,2003) %}
|
|
[[parachains]]
|
|
id = {{id}}
|
|
addToGenesis = true
|
|
genesis_state_generator = "undying-collator export-genesis-state --pov-size={{10000*(id-1999)}} --pvf-complexity={{id - 1999}}"
|
|
[parachains.collator]
|
|
image = "{{COL_IMAGE}}"
|
|
name = "collator"
|
|
command = "undying-collator"
|
|
args = ["-lparachain=debug", "--pov-size={{10000*(id-1999)}}", "--parachain-id={{id}}", "--pvf-complexity={{id - 1999}}"]
|
|
{% endfor %}
|
|
|
|
[types.Header]
|
|
number = "u64"
|
|
parent_hash = "Hash"
|
|
post_state = "Hash"
|