mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 21:01: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.1 KiB
TOML
47 lines
1.1 KiB
TOML
[settings]
|
|
timeout = 1000
|
|
bootnode = true
|
|
|
|
[relaychain.genesis.runtime.configuration.config]
|
|
max_validators_per_core = 1
|
|
needed_approvals = 2
|
|
group_rotation_frequency = 3
|
|
|
|
[relaychain]
|
|
default_image = "{{ZOMBIENET_INTEGRATION_TEST_IMAGE}}"
|
|
chain = "westend-local" # using westend-local to enable slashing
|
|
default_command = "polkadot"
|
|
|
|
[relaychain.default_resources]
|
|
limits = { memory = "4G", cpu = "2" }
|
|
requests = { memory = "2G", cpu = "1" }
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "honest-flaky-validator"
|
|
invulnerable = true # it will go offline, we don't want to disable it
|
|
count = 2
|
|
args = ["-lparachain=debug"]
|
|
|
|
[[relaychain.node_groups]]
|
|
name = "honest-validator"
|
|
count = 1
|
|
args = ["-lparachain=debug"]
|
|
|
|
[[relaychain.node_groups]]
|
|
image = "{{MALUS_IMAGE}}"
|
|
name = "malus-validator"
|
|
command = "malus suggest-garbage-candidate"
|
|
args = ["-lMALUS=trace"]
|
|
count = 1
|
|
|
|
[[parachains]]
|
|
id = 1000
|
|
cumulus_based = true
|
|
|
|
[parachains.collator]
|
|
name = "collator"
|
|
command = "polkadot-parachain"
|
|
image = "docker.io/parity/polkadot-parachain:latest"
|
|
# image = "{{COL_IMAGE}}"
|
|
args = ["-lparachain=debug"]
|