Skip to content

Commit 2ff73f1

Browse files
To polkadot-v1.7.2 (#1516)
* Setup deps * Remove Koi from account migration test * paritytech/polkadot-sdk#1495 * Bump * paritytech/polkadot-sdk#1524 * !! paritytech/polkadot-sdk#1363 * paritytech/polkadot-sdk#1492 * paritytech/polkadot-sdk#1911 * paritytech/polkadot-sdk#1900 Signed-off-by: Xavier Lau <[email protected]> * paritytech/polkadot-sdk#1661 * paritytech/polkadot-sdk#2144 * paritytech/polkadot-sdk#2048 * paritytech/polkadot-sdk#1672 * paritytech/polkadot-sdk#2303 * paritytech/polkadot-sdk#1256 * Remove identity and vesting * Fixes * paritytech/polkadot-sdk#2657 * paritytech/polkadot-sdk#1313 * paritytech/polkadot-sdk#2331 * paritytech/polkadot-sdk#2409 part.1 * paritytech/polkadot-sdk#2767 * paritytech/polkadot-sdk#2521 Signed-off-by: Xavier Lau <[email protected]> * paritytech/polkadot-sdk#1222 * paritytech/polkadot-sdk#1234 part.1 * Satisfy compiler * XCM V4 part.1 * paritytech/polkadot-sdk#1246 * Remove pallet-democracy part.1 * paritytech/polkadot-sdk#2142 * paritytech/polkadot-sdk#2428 * paritytech/polkadot-sdk#3228 * XCM V4 part.2 * Bump * Build all runtimes * Build node * Remove pallet-democracy Signed-off-by: Xavier Lau <[email protected]> * Format * Fix pallet tests * Fix precompile tests * Format * Fixes * Async, remove council, common pallet config * Fix `ethtx-forward` test case (#1519) * Fix ethtx-forward tests * Format * Fix following the review * Fixes * Fixes * Use default impl * Benchmark helper * Bench part.1 * Bench part.2 * Bench part.3 * Fix all tests * Typo * Feat * Fix EVM tracing build * Reuse upstream `proof_size_base_cost()` (#1521) * Format issue * Fixes * Fix CI --------- Signed-off-by: Xavier Lau <[email protected]> Co-authored-by: Bear Wang <[email protected]>
1 parent e9cb41d commit 2ff73f1

File tree

205 files changed

+9580
-10043
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+9580
-10043
lines changed

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ runs:
6161
--name=build-darwinia \
6262
-v=$(pwd):/build \
6363
darwinia-network/build-tool:latest \
64-
cargo build --release --locked \
64+
cargo b --release --locked \
6565
-p darwinia \
6666
--no-default-features \
6767
--features=$FEATURES

.github/workflows/checks.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ jobs:
6969
${{ matrix.action }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-
7070
- name: Action ${{ matrix.action }}
7171
if: matrix.action == 'build'
72-
run: cargo build --locked -p darwinia --features all-natives,evm-tracing --profile ci-dev
72+
run: cargo b --locked -p darwinia --no-default-features --features all-natives,evm-tracing --profile ci-dev
7373
- name: Action ${{ matrix.action }}
7474
if: matrix.action == 'test'
75-
run: SKIP_WASM_BUILD=1 cargo test --locked --features all-natives,runtime-benchmarks --profile ci-dev
75+
run: SKIP_WASM_BUILD=1 cargo t --locked --no-default-features --features all-natives,runtime-benchmarks --profile ci-dev
7676
- name: Configure artifacts
7777
if: matrix.action == 'build'
7878
run: |
@@ -109,8 +109,7 @@ jobs:
109109
if: github.event_name == 'push' || !github.event.pull_request.draft
110110
strategy:
111111
matrix:
112-
runtime:
113-
[runtime/darwinia, runtime/crab, runtime/koi]
112+
runtime: [runtime/darwinia, runtime/crab, runtime/koi]
114113
runs-on: ubuntu-latest
115114
steps:
116115
- name: Fetch latest code

.maintain/zombienet.toml

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
[settings]
2+
provider = "native"
3+
14
[relaychain]
25
chain = "rococo-local"
36
default_args = ["--database=paritydb", "-lparachain=debug"]
@@ -11,13 +14,26 @@ name = "bob"
1114
validator = true
1215

1316
[[parachains]]
14-
chain = "koi-local"
17+
chain = "koi-genesis"
1518
id = 2105
16-
1719
[parachains.collator]
18-
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
19-
command = "tmp/darwinia"
20-
name = "collator01"
21-
22-
[settings]
23-
provider = "native"
20+
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
21+
command = "tmp/darwinia"
22+
name = "C1"
23+
rpc_port = 10000
24+
[[parachains]]
25+
chain = "koi-genesis"
26+
id = 2105
27+
[parachains.collator]
28+
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
29+
command = "tmp/darwinia"
30+
name = "C2"
31+
rpc_port = 10001
32+
[[parachains]]
33+
chain = "koi-genesis"
34+
id = 2105
35+
[parachains.collator]
36+
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
37+
command = "tmp/darwinia"
38+
name = "C3"
39+
rpc_port = 10002

0 commit comments

Comments
 (0)