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

Allow to test Multi-Block-Migrations #90

Merged
merged 53 commits into from
Oct 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
d1bce56
inherent overhaul
liamaharon May 7, 2024
20878ee
bump version
liamaharon May 7, 2024
d58941c
clean up custom idps
liamaharon May 8, 2024
ff30415
smart inherent provider
liamaharon May 8, 2024
5883f46
licence and basic docs
liamaharon May 9, 2024
b27fd10
clippy
liamaharon May 9, 2024
62d9696
remove node-executor node-primitive deps
liamaharon May 9, 2024
9c5fcbe
fmt
liamaharon May 9, 2024
ac898c2
update cargo.lock
liamaharon May 9, 2024
36a8cf1
move shared params to common
liamaharon May 10, 2024
4424f61
move misc logging to common
liamaharon May 10, 2024
a0a5485
move parse to common
liamaharon May 10, 2024
16c5b39
move state to common
liamaharon May 10, 2024
9632a14
move inherents to empty block production dir
liamaharon May 10, 2024
4f7e04e
move block creation out of fast forward
liamaharon May 10, 2024
b728086
improve log
liamaharon May 10, 2024
039cdaf
clippy
liamaharon May 10, 2024
bcdd083
cargo fmt
liamaharon May 13, 2024
4a406c6
update test runtimes and snapshots
liamaharon May 14, 2024
fd0092e
use stable for clippy
liamaharon May 14, 2024
4b4648b
fix typos
liamaharon May 14, 2024
527c857
Update core/src/common/empty_block/inherents/pre_apply.rs
liamaharon May 15, 2024
c7dbbfe
address comments
liamaharon May 16, 2024
8b465e2
doc comment
liamaharon May 16, 2024
828a357
doc
liamaharon May 16, 2024
5980993
use valueenum
liamaharon May 16, 2024
aee8086
rename execute_next_block to mine_block
liamaharon May 16, 2024
2254202
bump relay_offset +1
liamaharon May 17, 2024
00e2962
blocktime arg
liamaharon May 20, 2024
e80f524
make blocktime a required value
liamaharon May 20, 2024
47a76ca
hardcode relaychain blocktime
liamaharon May 20, 2024
80dbdb5
wip mbms
liamaharon Jul 10, 2024
b528ae0
Merge branch 'main' into liam-runtime-upgrade-mbms
liamaharon Jul 10, 2024
88f84f2
Merge remote-tracking branch 'origin/main' into liam-runtime-upgrade-…
ggwpez Sep 12, 2024
d169e4c
minor fixes
claravanstaden Sep 12, 2024
f7a12de
shit works now
ggwpez Sep 16, 2024
11c7d23
Add files
ggwpez Sep 26, 2024
52a22ee
Fix deps
ggwpez Sep 26, 2024
52f90bf
Big cleanup
ggwpez Sep 30, 2024
1127b95
Update CI and deps
ggwpez Oct 1, 2024
800df72
Fix deps
ggwpez Oct 1, 2024
bf5bd05
Populate README
ggwpez Oct 1, 2024
de30ed9
Check README in CI
ggwpez Oct 1, 2024
38429df
Bump version to 0.8.0
ggwpez Oct 1, 2024
f4f413f
lockfile
ggwpez Oct 1, 2024
22c75c8
Clean disk space
ggwpez Oct 1, 2024
cbbdbb9
Fix tests
ggwpez Oct 1, 2024
2518e83
Tests good now
Oct 3, 2024
e5b1d91
Merge remote-tracking branch 'palace/liam-runtime-upgrade-mbms' into …
ggwpez Oct 3, 2024
3c9beb4
clippy
ggwpez Oct 3, 2024
18b4759
fmt
ggwpez Oct 3, 2024
1c27a93
Add files
Oct 3, 2024
16422f2
Merge remote-tracking branch 'palace/liam-runtime-upgrade-mbms' into …
ggwpez Oct 3, 2024
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
2 changes: 2 additions & 0 deletions .github/workflows/rust-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ jobs:
os: [ubuntu-latest]
toolchain: [stable]
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: "-Cdebug-assertions=y"
steps:
- uses: actions/checkout@v4
- name: Install Rust ${{ matrix.toolchain }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/rust-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
toolchain: stable
targets: wasm32-unknown-unknown
components: rust-src

- name: Check if the README is up to date.
run: |
cargo install cargo-rdme --locked -q
cargo rdme --check --workspace-project try-runtime-cli --readme-path README.md

- name: Build docs
uses: actions-rs/cargo@v1
Expand Down
Loading
Loading