-
Notifications
You must be signed in to change notification settings - Fork 379
Conversation
dave: is up | ||
alice: parachain 2000 is registered within 225 seconds | ||
charlie: reports block height is at least 5 within 250 seconds | ||
charlie: parachain 2000 perform upgrade with <wasm_binary_spec_version_incremented.rs.compact.compressed.wasm> within 200 seconds |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTE: We need to have access to this artifact locally or through http
to make the upgrade.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How does this work in practice? We upload the to-be-upgraded runtime somewhere and enter a url here which would befetches?
|
||
[[relaychain.nodes]] | ||
name = "bob" | ||
image = "docker.io/paritypr/polkadot-debug:5236-0.9.18-c55660e9-be16bd72" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need this image here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @bkchr, no this image should be set as env var
by the ci job. The ci
isn't ready yet, I will update this in all the files.
Thanks!
This looks good to me. @pepoviola title says WIP, what needs to be done here? |
Hi @skunert, yes. I will need to make a couple of changes and also add the test to Thanks! |
IDK. What does this entails? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI part looks good
That we always use the Thanks! |
Hi @skunert, all tests are now migrated and working on gitlab.
Let me know if you want to add more tests. Thanks! |
@pepoviola sounds really good! So, we can merge this now? |
Hi @bkchr, thanks! Yes, we can merge now :) |
Nice work here 👍. cumulus/test/service/tests/full_node_catching_up.rs Lines 83 to 84 in f7e5d70
Missing for tests
If this is a technical limitation for now, we could merge nevertheless but can not deprecate the rust tests until we have this. As I understand both zombienet and the old ones would run on CI for now? |
Hi @skunert, thanks for the feedback!. Those test (0001, 0002, 0003) check if the const parachains = (await api.query.paras.parachains<Vec<ParaId>>()) || []; If you want we can add one extra rcp call like Thanks! |
Hey @pepoviola, In test 0003, in the original rust test we start node eve as full node with cli argument |
Ahh... my bad @skunert. Yes, we can modify the network config to test the Thanks!! |
* Trivial networking changes for Substrate PR paritytech/substrate#11940 * Apply formatting rules * update lockfile for {"polkadot", "substrate"} Co-authored-by: parity-processbot <>
Hi @skunert, I add the logic to use Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
Ping @skunert we need one more review to merge this one :) |
Hi @skunert, this add the missing integration test to
zombienet_test
and rename thecommand
of the previous. Also, there is an small change in the test binary to allow toload
the chain-spec from json because is needed to create a different genesis-state in themigrate_solo_to_para
test.NOTE: The
ci
configuration isn't included here, tracked in this issue: https://github.com/paritytech/ci_cd/issues/436Thanks!