mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 11:41:02 +00:00
bump zombienet to v1.3.65 (#7631)
* bump zombienet version * remove workaround, zombienet collators cmd bug fixed in latest version * add env var to run in ci * add env var to run in ci
This commit is contained in:
@@ -38,7 +38,7 @@ variables:
|
|||||||
BUILDAH_COMMAND: "buildah --storage-driver overlay2"
|
BUILDAH_COMMAND: "buildah --storage-driver overlay2"
|
||||||
DOCKER_OS: "debian:stretch"
|
DOCKER_OS: "debian:stretch"
|
||||||
ARCH: "x86_64"
|
ARCH: "x86_64"
|
||||||
ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.55"
|
ZOMBIENET_IMAGE: "docker.io/paritytech/zombienet:v1.3.65"
|
||||||
|
|
||||||
default:
|
default:
|
||||||
cache: {}
|
cache: {}
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ use polkadot_node_primitives::CollationGenerationConfig;
|
|||||||
use polkadot_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
|
use polkadot_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
|
||||||
use polkadot_primitives::Id as ParaId;
|
use polkadot_primitives::Id as ParaId;
|
||||||
use sc_cli::{Error as SubstrateCliError, SubstrateCli};
|
use sc_cli::{Error as SubstrateCliError, SubstrateCli};
|
||||||
use sc_service::Role;
|
|
||||||
use sp_core::hexdisplay::HexDisplay;
|
use sp_core::hexdisplay::HexDisplay;
|
||||||
use test_parachain_adder_collator::Collator;
|
use test_parachain_adder_collator::Collator;
|
||||||
|
|
||||||
@@ -54,12 +53,9 @@ fn main() -> Result<()> {
|
|||||||
)
|
)
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
runner.run_node_until_exit(|mut config| async move {
|
runner.run_node_until_exit(|config| async move {
|
||||||
let collator = Collator::new();
|
let collator = Collator::new();
|
||||||
|
|
||||||
// Zombienet is spawning all collators currently with the same CLI, this means it
|
|
||||||
// sets `--validator` and this is wrong here.
|
|
||||||
config.role = Role::Full;
|
|
||||||
let full_node = polkadot_service::build_full(
|
let full_node = polkadot_service::build_full(
|
||||||
config,
|
config,
|
||||||
polkadot_service::NewFullParams {
|
polkadot_service::NewFullParams {
|
||||||
|
|||||||
@@ -21,7 +21,6 @@ use polkadot_node_primitives::CollationGenerationConfig;
|
|||||||
use polkadot_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
|
use polkadot_node_subsystem::messages::{CollationGenerationMessage, CollatorProtocolMessage};
|
||||||
use polkadot_primitives::Id as ParaId;
|
use polkadot_primitives::Id as ParaId;
|
||||||
use sc_cli::{Error as SubstrateCliError, SubstrateCli};
|
use sc_cli::{Error as SubstrateCliError, SubstrateCli};
|
||||||
use sc_service::Role;
|
|
||||||
use sp_core::hexdisplay::HexDisplay;
|
use sp_core::hexdisplay::HexDisplay;
|
||||||
use test_parachain_undying_collator::Collator;
|
use test_parachain_undying_collator::Collator;
|
||||||
|
|
||||||
@@ -54,12 +53,9 @@ fn main() -> Result<()> {
|
|||||||
)
|
)
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
runner.run_node_until_exit(|mut config| async move {
|
runner.run_node_until_exit(|config| async move {
|
||||||
let collator = Collator::new(cli.run.pov_size, cli.run.pvf_complexity);
|
let collator = Collator::new(cli.run.pov_size, cli.run.pvf_complexity);
|
||||||
|
|
||||||
// Zombienet is spawning all collators currently with the same CLI, this means it
|
|
||||||
// sets `--validator` and this is wrong here.
|
|
||||||
config.role = Role::Full;
|
|
||||||
let full_node = polkadot_service::build_full(
|
let full_node = polkadot_service::build_full(
|
||||||
config,
|
config,
|
||||||
polkadot_service::NewFullParams {
|
polkadot_service::NewFullParams {
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ zombienet-tests-parachains-smoke-test:
|
|||||||
- job: publish-malus-image
|
- job: publish-malus-image
|
||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -42,6 +43,7 @@ zombienet-tests-parachains-pvf:
|
|||||||
- job: publish-polkadot-debug-image
|
- job: publish-polkadot-debug-image
|
||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -73,6 +75,7 @@ zombienet-tests-parachains-disputes:
|
|||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
- job: publish-malus-image
|
- job: publish-malus-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -104,6 +107,7 @@ zombienet-tests-parachains-disputes-garbage-candidate:
|
|||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
- job: publish-malus-image
|
- job: publish-malus-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -135,6 +139,7 @@ zombienet-tests-parachains-disputes-past-session:
|
|||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
- job: publish-malus-image
|
- job: publish-malus-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -167,6 +172,7 @@ zombienet-test-parachains-upgrade-smoke-test:
|
|||||||
- job: publish-malus-image
|
- job: publish-malus-image
|
||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "ZombieNet Tests Config"
|
- echo "ZombieNet Tests Config"
|
||||||
@@ -197,6 +203,7 @@ zombienet-tests-misc-paritydb:
|
|||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
artifacts: true
|
artifacts: true
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/misc"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/misc"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -227,6 +234,7 @@ zombienet-tests-misc-upgrade-node:
|
|||||||
- job: build-linux-stable
|
- job: build-linux-stable
|
||||||
artifacts: true
|
artifacts: true
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/misc"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/misc"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -258,6 +266,7 @@ zombienet-tests-malus-dispute-valid:
|
|||||||
- job: publish-malus-image
|
- job: publish-malus-image
|
||||||
- job: publish-test-collators-image
|
- job: publish-test-collators-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/node/malus/integrationtests"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/node/malus/integrationtests"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -288,6 +297,7 @@ zombienet-tests-deregister-register-validator:
|
|||||||
- job: publish-polkadot-debug-image
|
- job: publish-polkadot-debug-image
|
||||||
artifacts: true
|
artifacts: true
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/smoke"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
@@ -315,6 +325,7 @@ zombienet-tests-beefy-and-mmr:
|
|||||||
needs:
|
needs:
|
||||||
- job: publish-polkadot-debug-image
|
- job: publish-polkadot-debug-image
|
||||||
variables:
|
variables:
|
||||||
|
RUN_IN_CONTAINER: "1"
|
||||||
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
GH_DIR: "https://github.com/paritytech/polkadot/tree/${CI_COMMIT_SHORT_SHA}/zombienet_tests/functional"
|
||||||
before_script:
|
before_script:
|
||||||
- echo "Zombie-net Tests Config"
|
- echo "Zombie-net Tests Config"
|
||||||
|
|||||||
Reference in New Issue
Block a user