-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathjustfile
62 lines (52 loc) · 2.55 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Help information
default:
@just --list
# Build the "Base" Runtime using srtool
build-base-srtool:
srtool build --root -p polimec-base-runtime --runtime-dir runtimes/base --build-opts="--features=on-chain-release-build"
build-rolimec-srtool:
srtool build --root -p polimec-base-runtime --runtime-dir runtimes/base --build-opts="--features=on-chain-release-build,fast-mode"
# Build the "Testnet" Runtime using srtool
# Test the runtimes features
test-runtime-features:
cargo test --features runtime-benchmarks -p polimec-parachain-runtime
# Run the integration tests
test-integration:
cargo test -p integration-tests
# src: https://github.com/polkadot-fellows/runtimes/blob/48ccfae6141d2924f579d81e8b1877efd208693f/system-parachains/asset-hubs/asset-hub-polkadot/src/weights/cumulus_pallet_xcmp_queue.rs
# Benchmark a specific pallet on the "Base" Runtime
benchmark-runtime pallet="pallet-elections-phragmen" features="runtime-benchmarks":
cargo run --features {{ features }} --release -p polimec-parachain-node benchmark pallet \
--chain=base-polkadot \
--steps=50 \
--repeat=20 \
--pallet={{ pallet }} \
--extrinsic=* \
--wasm-execution=compiled \
--heap-pages=4096 \
--output=runtimes/base/src/weights/{{ replace(pallet, "-", "_") }}.rs
# src: https://github.com/paritytech/polkadot-sdk/blob/bc2e5e1fe26e2c2c8ee766ff9fe7be7e212a0c62/substrate/frame/nfts/src/weights.rs
# Run the Runtime benchmarks for a specific pallet
benchmark-pallet pallet="pallet-elections-phragmen" features="runtime-benchmarks":
cargo run --features {{ features }} --release -p polimec-parachain-node benchmark pallet \
--chain=base-polkadot \
--steps=50 \
--repeat=20 \
--pallet={{ pallet }} \
--no-storage-info \
--no-median-slopes \
--no-min-squares \
--extrinsic '*' \
--wasm-execution=compiled \
--heap-pages=4096 \
--output=pallets/{{ replace(pallet, "pallet-", "") }}/src/weights.rs \
--template=./.maintain/frame-weight-template.hbs
# Build the Node Docker Image
docker-build tag="latest" package="polimec-parachain-node":
./scripts/build_image.sh {{ tag }} ./Dockerfile {{ package }}
# Create the "Base" Runtime Chainspec
create-chainspec-base:
./scripts/create_base_chain_spec.sh ./runtimes/base/target/srtool/release/wbuild/polimec-base-runtime/polimec_base_runtime.compact.compressed.wasm 2105
# Use zombienet to spawn rococo + polimec testnet
zombienet path_to_file="scripts/zombienet/native/base-rococo-local.toml":
zombienet spawn {{ path_to_file }}