This repository was archived by the owner on Nov 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
zombienet: try to fix parachains upgrade test #5724
Merged
paritytech-processbot
merged 15 commits into
master
from
ao-fix-zombienet-parachain-upgrade
Jun 28, 2022
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5510e88
zombienet: try to fix parachains upgrade test
c83b292
try a different collator image
72c9d92
Revert "try a different collator image"
0312fa0
try setting cumulusBased
16a8913
fix zombienet upgrade test
pepoviola 43a4f4a
change image
pepoviola 81707e3
update command for test
pepoviola 8e168bd
update zombienet image
pepoviola eab9fa3
bump zombienet version
pepoviola c947a85
bump zn version
pepoviola ac5b732
Revert "try setting cumulusBased"
5923fe2
Revert "update command for test"
11545b6
Revert "change image"
06bebff
Merge branch 'master' into ao-fix-zombienet-parachain-upgrade
65f3bd9
zombienet: change validator image to a PR branch
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,11 +26,12 @@ command = "polkadot" | |
| [[parachains]] | ||
| id = 100 | ||
| addToGenesis = true | ||
| cumulus_based = true | ||
|
|
||
| [parachains.collator] | ||
| name = "collator01" | ||
| image = "{{COL_IMAGE}}" | ||
| commandWithArgs = "polkadot-collator --collator --alice --force-authoring --tmp --parachain-id 100 --rpc-cors all --unsafe-rpc-external --rpc-methods unsafe --unsafe-ws-external -- --execution wasm --chain /cfg/rococo-local.json --bootnodes /dns/bootnode/tcp/30333/p2p/12D3KooWEyoppNCUx8Yx66oV9fJnriXwCcXwDDUA2kj6vnc6iDEp" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are those args no longer needed?
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The parameters are added by zombienet automatically. We have the
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. it's handled by zombienet (some args inferred by cumulus_based): |
||
| command = "polkadot-collator" | ||
|
|
||
| [[parachains.collator.env]] | ||
| name = "RUST_LOG" | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
can we instead update the env variable
ZOMBIENET_IMAGE?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.
Yes, that will update the image for all the tests. I can do that in a followup pr.
Thx!