-
Notifications
You must be signed in to change notification settings - Fork 130
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Switch to gav-xcm-v3 branch to be able to test bridges + XCMv3 integration #1378
Conversation
@@ -144,7 +144,8 @@ test: | |||
- time cargo fetch | |||
- time cargo fetch --manifest-path=`cargo metadata --format-version=1 | jq --compact-output --raw-output ".packages[] | select(.name == \"polkadot-test-runtime\").manifest_path"` | |||
- time cargo fetch --manifest-path=`cargo metadata --format-version=1 | jq --compact-output --raw-output ".packages[] | select(.name == \"polkadot-runtime\").manifest_path"` | |||
- CARGO_NET_OFFLINE=true time cargo test --verbose --workspace | |||
- time cargo fetch --manifest-path=`cargo metadata --format-version=1 | jq --compact-output --raw-output ".packages[] | select(.name == \"kusama-runtime\").manifest_path"` |
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.
Originally this cargo fetch has been added because we had problems with concurrent runtime builds (we build 6 now :/) and cargo metdata
was called during build, which doesn't work well with concurrent builds. I've added SKIP_POLKADOT_RUNTIME_WASM_BUILD
and etc because we don't need these runtimes in cargo test
.
This reverts commit fc35ac6.
* add wss bootnodes to statemint chainspec * add wss bootnodes to statemine chainspec
…ation (paritytech#1378) * switch to gav-xcm-v3 branch (wip) * add comment * play with CI * keep playing with CI * play with CI * trigger CI * Revert "trigger CI" This reverts commit fc35ac6.
…ation (paritytech#1378) * switch to gav-xcm-v3 branch (wip) * add comment * play with CI * keep playing with CI * play with CI * trigger CI * Revert "trigger CI" This reverts commit fc35ac6.
I've been trying first to jsut change all our references to
gav-xcm-v3
Polkadot/Cumulus branch, but both Substrate and Polkadot crates are duplicated in this case, because Polkadot/Cumulus code still referencesmaster
branch. So solution is to patch references in the workspace'Cargo.toml
temporarily, until XCMv3 PR is merged.The goal of this PR is not to have working XCM on our chains, but to have code which we may start using for our experiments.