Skip to content
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

Upgrade to polkadot v1.1.0 #2499

Merged
merged 62 commits into from
Oct 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
62 commits
Select commit Hold shift + click to select a range
2205257
Fixes build errors.
Sep 21, 2023
7a6df23
Fixes build errors.
Sep 21, 2023
77c834c
Fixes build errors.
Sep 22, 2023
dd293f7
Fix xcm tests
Sep 22, 2023
52fcce3
Fix xcm tests for moonbase and moonrive
Sep 22, 2023
a74ab6d
Add missing file
Sep 22, 2023
655360a
Fix benchmar tests build errors
Sep 22, 2023
e087792
Simplify the native runtime version extraction
Sep 23, 2023
4add8db
Further simplification in accordance with the upstream node template
Sep 23, 2023
830c9df
Remove unused imports
Sep 25, 2023
ab2adeb
Fix tests
Sep 25, 2023
d094180
Fixes a clippy issue
Sep 25, 2023
8592746
Update sources
Sep 25, 2023
d4bb25b
Fix formatting
Sep 25, 2023
2689408
Fix test build problems
Sep 25, 2023
e696e2a
Replace deprecated `start_collator` function.
Sep 25, 2023
cdb1644
`try-runtime` subcommand has been migrated
Sep 25, 2023
1d2434a
Fix formatting
Sep 25, 2023
4c5fa5c
Fix ts tests
Sep 26, 2023
2688195
Include precompile-wasm subcommand
Sep 27, 2023
bf13093
Update the branch
Sep 27, 2023
e689450
Add subcommand
Sep 27, 2023
61700ef
update polkadot-sdk pin
librelois Sep 27, 2023
b8be9d9
enable wasmtime precompiled feature
librelois Sep 27, 2023
449cc47
Adds compile wasm script for dev CI
crystalin Sep 28, 2023
c5a2fd4
Forces git patch to use ssh support
crystalin Sep 28, 2023
8458fe4
Prettier :)
crystalin Sep 28, 2023
3055eb9
Removes QEMU for docker support
crystalin Sep 28, 2023
1e0c2a9
more prettier :p
crystalin Sep 28, 2023
ca5e90a
Fix tests
Sep 29, 2023
81198d7
Fix tests
Oct 4, 2023
4620a83
Fix the tests failing after the breaking change ini `Eth::new` api
Oct 4, 2023
7601e5e
Fix formatting
Oct 4, 2023
ed472c8
Revert the changes in the moonwall config related to precompiled wasm
Oct 4, 2023
3e4130f
Add the repo for the polkadot binaries
Oct 4, 2023
4677214
Revert "Add the repo for the polkadot binaries"
Oct 4, 2023
b3b7464
Fix CI pipeline
Oct 4, 2023
34ff129
Add the repo for the polkadot binaries
Oct 4, 2023
94d24b7
Fix part of the test and restore wasm for testing
crystalin Oct 4, 2023
484e941
Fix github actions
Oct 5, 2023
f981654
Fix github actions
Oct 5, 2023
97305b9
Fix github actions
Oct 5, 2023
a88cbd0
Fix formatting errors
Oct 5, 2023
4c7fe3d
Upgrade moonwall-cli version
Oct 5, 2023
8e7b494
Update pnpm-lock.yaml
Oct 5, 2023
3873be8
Fix moonwall config
Oct 5, 2023
a0941dc
Set log level to debug for zombie upgrade
Oct 5, 2023
3df7c93
Reduce some test
crystalin Oct 5, 2023
7004eca
Extract the author nimbus id from the previous block header
Oct 5, 2023
a0d01d8
Debug zombie upgrade
Oct 5, 2023
1563ca2
Fix democracy duplicated logic
crystalin Oct 5, 2023
acba735
Fix handling of the relay chain mode
Oct 5, 2023
4449c8a
Remove unused import
Oct 5, 2023
6058743
Revert faulty changes
Oct 6, 2023
f47c84e
Revert back to old APIs to start the node
Oct 6, 2023
cd1281f
Clean up
Oct 6, 2023
b4565e6
Fix chopsticks tests
Oct 9, 2023
ddb131c
Cleanup
Oct 9, 2023
c8a22f8
Update sources
Oct 9, 2023
dfa667c
Changes after review comments
Oct 10, 2023
7ee2ad9
Fix the polkadot release extraction
Oct 10, 2023
572cf9b
Fix formatting
Oct 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -561,15 +561,6 @@ jobs:
with:
name: moonbeam
path: target/release
- name: Retrieve polkadot binary from
run: |
POLKADOT_VERSION=${{ needs.set-tags.outputs.polkadot_ver }}
DOCKER_TAG="parity/polkadot:v${POLKADOT_VERSION}"

docker rm -f dummy 2> /dev/null | true
docker create -ti --name dummy $DOCKER_TAG bash
docker cp dummy:/usr/bin/polkadot test/tmp/polkadot
docker rm -f dummy
- name: Retrieve moonbeam binary from docker (for plainSpec generation)
run: |
MOONBEAM_COMMIT=${{ needs.set-tags.outputs.latest_rt_sha8 }}
Expand All @@ -592,7 +583,6 @@ jobs:

## Start zombie network and run tests
chmod uog+x ../target/release/moonbeam
chmod uog+x tmp/polkadot
pnpm moonwall test zombie_${{ matrix.chain }}
- name: Zip and Upload Node Logs on Failure
if: failure()
Expand Down
Loading
Loading