1
1
# Help information
2
2
default :
3
- @ just --list
4
-
5
- # Build everything
6
- build-all :
7
- cargo build --release
8
-
9
- # Build the "Base" Runtime
10
- build-base-runtime :
11
- cargo build --release -p polimec-base-runtime
12
-
13
- # Build the "Testnet" Runtime
14
- build-parachain-runtime :
15
- cargo build --release -p polimec-parachain-runtime
16
-
17
- # Build the "Parachain" Node
18
- build-parachain-node :
19
- cargo build --release -p polimec-parachain-node
3
+ @ just --list
20
4
21
5
# Build the "Base" Runtime using srtool
22
6
build-base-srtool :
23
- srtool build --root -p polimec-base-runtime --runtime-dir runtimes/ base --build-opts=" --features=on-chain-release-build"
7
+ srtool build --root -p polimec-base-runtime --runtime-dir runtimes/ base --build-opts=" --features=on-chain-release-build"
24
8
25
9
# Build the "Testnet" Runtime using srtool
26
- build-parachain-srtool :
27
- srtool build --root -p polimec-parachain-runtime --runtime-dir runtimes/ testnet
28
10
29
11
# Test the runtimes features
30
12
test-runtime-features :
31
- cargo test --features runtime-benchmarks -p polimec-parachain-runtime
13
+ cargo test --features runtime-benchmarks -p polimec-parachain-runtime
32
14
33
15
# Run the integration tests
34
16
test-integration :
35
- cargo test -p integration-tests
36
-
37
-
38
- # Benchmark the "Testnet" Runtime
39
- benchmark-runtime-funding :
40
- cargo run --features runtime-benchmarks --release -p polimec-parachain-node benchmark pallet \
41
- - -chain=polimec-rococo-local \
42
- - -steps=50 \
43
- - -repeat=20 \
44
- - -pallet=pallet_funding \
45
- - -extrinsic ' *' \
46
- - -wasm-execution=compiled \
47
- - -heap-pages=4096 \
48
- - -output=runtimes/ testnet/ src/ weights/ pallet_funding.rs
49
-
50
-
51
- # Benchmark the "Testnet" Runtime
52
- benchmark-runtime-linear-release :
53
- cargo run --features runtime-benchmarks --release -p polimec-parachain-node benchmark pallet \
54
- - -chain=polimec-rococo-local \
55
- - -steps=50 \
56
- - -repeat=20 \
57
- - -pallet=pallet_linear_release \
58
- - -extrinsic ' *' \
59
- - -wasm-execution=compiled \
60
- - -heap-pages=4096 \
61
- - -output=runtimes/ testnet/ src/ weights/ pallet_linear_release.rs
62
-
63
- # Benchmark the "Testnet" Runtime
64
- benchmark-pallet-funding :
65
- cargo run --features runtime-benchmarks,fast-mode --release -p polimec-parachain-node benchmark pallet \
66
- - -chain=polimec-rococo-local \
67
- - -steps=50 \
68
- - -repeat=20 \
69
- - -pallet=pallet_funding \
70
- - -extrinsic ' *' \
71
- - -heap-pages=4096 \
72
- - -output=pallets/ funding/ src/ weights-test.rs \
73
- - -template=./ .maintain/ frame-weight-template.hbs
74
-
75
- benchmark-pallet-linear-release :
76
- cargo run --features runtime-benchmarks,fast-mode --release -p polimec-parachain-node benchmark pallet \
77
- - -chain=polimec-rococo-local \
78
- - -steps=50 \
79
- - -repeat=20 \
80
- - -pallet=pallet_linear_release \
81
- - -extrinsic ' *' \
82
- - -heap-pages=4096 \
83
- - -output=pallets/ linear-release/ src/ weights.rs \
84
- - -template=./ .maintain/ frame-weight-template.hbs
85
-
86
- benchmarks-test :
87
- cargo test --features runtime-benchmarks -p pallet-funding benchmarks
88
-
17
+ cargo test -p integration-tests
18
+
19
+ # src: https://github.com/polkadot-fellows/runtimes/blob/48ccfae6141d2924f579d81e8b1877efd208693f/system-parachains/asset-hubs/asset-hub-polkadot/src/weights/cumulus_pallet_xcmp_queue.rs
20
+ # Benchmark a specific pallet on the "Base" Runtime
21
+ benchmark-runtime pallet = " pallet-elections-phragmen" features = " runtime-benchmarks":
22
+ cargo run --features {{ features }} --release -p polimec-parachain-node benchmark pallet \
23
+ - -chain=base-polkadot \
24
+ - -steps=50 \
25
+ - -repeat=20 \
26
+ - -pallet={{ pallet }} \
27
+ - -extrinsic=* \
28
+ - -wasm-execution=compiled \
29
+ - -heap-pages=4096 \
30
+ - -output=runtimes/ base/ src/ weights/ {{ replace (pallet, " -" , " _" ) }} .rs
31
+
32
+ # src: https://github.com/paritytech/polkadot-sdk/blob/bc2e5e1fe26e2c2c8ee766ff9fe7be7e212a0c62/substrate/frame/nfts/src/weights.rs
33
+ # Run the Runtime benchmarks for a specific pallet
34
+ benchmark-pallet pallet = " pallet-elections-phragmen" features = " runtime-benchmarks":
35
+ cargo run --features {{ features }} --release -p polimec-parachain-node benchmark pallet \
36
+ - -chain=base-polkadot \
37
+ - -steps=50 \
38
+ - -repeat=20 \
39
+ - -pallet={{ pallet }} \
40
+ - -no-storage-info \
41
+ - -no-median-slopes \
42
+ - -no-min-squares \
43
+ - -extrinsic ' *' \
44
+ - -wasm-execution=compiled \
45
+ - -heap-pages=4096 \
46
+ - -output=pallets/ {{ replace (pallet, " pallet-" , " " ) }} / src/ weights.rs \
47
+ - -template=./ .maintain/ frame-weight-template.hbs
89
48
90
49
# Build the Node Docker Image
91
- docker-build tag = "latest " package = "polimec -parachain -node ":
92
- ./ scripts/ build_image.sh {{ tag}} ./ Dockerfile {{ package}}
50
+ docker-build tag = " latest" package = " polimec-parachain-node":
51
+ ./ scripts/ build_image.sh {{ tag }} ./ Dockerfile {{ package }}
93
52
94
53
# Create the "Base" Runtime Chainspec
95
54
create-chainspec-base :
96
- ./ scripts/ create_base_chain_spec.sh ./ runtimes/ base/ target/ srtool/ release/ wbuild/ polimec-base-runtime/ polimec_base_runtime.compact.compressed.wasm 2105
55
+ ./ scripts/ create_base_chain_spec.sh ./ runtimes/ base/ target/ srtool/ release/ wbuild/ polimec-base-runtime/ polimec_base_runtime.compact.compressed.wasm 2105
97
56
98
57
# Use zombienet to spawn rococo + polimec testnet
99
- zombienet path_to_file = "scripts /zombienet /native /base -rococo -local .toml ":
100
- zombienet spawn {{ path_to_file}}
58
+ zombienet path_to_file = " scripts/zombienet/native/base-rococo-local.toml":
59
+ zombienet spawn {{ path_to_file }}
0 commit comments