Skip to content

Commit

Permalink
To polkadot-v1.7.2 (#1516)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
AurevoirXavier and boundless-forest authored Jun 28, 2024
1 parent 6acf7b4 commit 61e127a
Show file tree
Hide file tree
Showing 205 changed files with 9,580 additions and 10,043 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ runs:
--name=build-darwinia \
-v=$(pwd):/build \
darwinia-network/build-tool:latest \
cargo build --release --locked \
cargo b --release --locked \
-p darwinia \
--no-default-features \
--features=$FEATURES
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ jobs:
${{ matrix.action }}-${{ env.CACHE_VERSION }}-${{ runner.os }}-
- name: Action ${{ matrix.action }}
if: matrix.action == 'build'
run: cargo build --locked -p darwinia --features all-natives,evm-tracing --profile ci-dev
run: cargo b --locked -p darwinia --no-default-features --features all-natives,evm-tracing --profile ci-dev
- name: Action ${{ matrix.action }}
if: matrix.action == 'test'
run: SKIP_WASM_BUILD=1 cargo test --locked --features all-natives,runtime-benchmarks --profile ci-dev
run: SKIP_WASM_BUILD=1 cargo t --locked --no-default-features --features all-natives,runtime-benchmarks --profile ci-dev
- name: Configure artifacts
if: matrix.action == 'build'
run: |
Expand Down Expand Up @@ -109,8 +109,7 @@ jobs:
if: github.event_name == 'push' || !github.event.pull_request.draft
strategy:
matrix:
runtime:
[runtime/darwinia, runtime/crab, runtime/koi]
runtime: [runtime/darwinia, runtime/crab, runtime/koi]
runs-on: ubuntu-latest
steps:
- name: Fetch latest code
Expand Down
32 changes: 24 additions & 8 deletions .maintain/zombienet.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[settings]
provider = "native"

[relaychain]
chain = "rococo-local"
default_args = ["--database=paritydb", "-lparachain=debug"]
Expand All @@ -11,13 +14,26 @@ name = "bob"
validator = true

[[parachains]]
chain = "koi-local"
chain = "koi-genesis"
id = 2105

[parachains.collator]
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
command = "tmp/darwinia"
name = "collator01"

[settings]
provider = "native"
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
command = "tmp/darwinia"
name = "C1"
rpc_port = 10000
[[parachains]]
chain = "koi-genesis"
id = 2105
[parachains.collator]
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
command = "tmp/darwinia"
name = "C2"
rpc_port = 10001
[[parachains]]
chain = "koi-genesis"
id = 2105
[parachains.collator]
args = ["--database=paritydb", "--force-authoring", "-lparachain=debug"]
command = "tmp/darwinia"
name = "C3"
rpc_port = 10002
Loading

0 comments on commit 61e127a

Please sign in to comment.