3d55bfbcd9
- Rename CLI argument --pallet to --pezpallet (with --pallet as alias) - Rename --pallets to --pezpallet, --exclude-pallets to --exclude-pezpallets - Update benchmark subcommand from 'pallet' to 'pezpallet' - Rename check-frame-omni-bencher.yml to check-pezframe-omni-bencher.yml - Update all benchmark scripts to use new argument names - Update cmd.py to use pezframe-omni-bencher and --pezpallet
16 lines
492 B
Bash
Executable File
16 lines
492 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Example command for updating pallet benchmarking
|
|
pushd ../pezcumulus
|
|
cargo run --release --bin pezkuwi-teyrchain \
|
|
--features runtime-benchmarks \
|
|
-- \
|
|
benchmark pezpallet \
|
|
--chain=bridge-hub-pezkuwichain-dev \
|
|
--pezpallet=snowbridge_pallet_ethereum_client \
|
|
--extrinsic="*" \
|
|
--execution=wasm --wasm-execution=compiled \
|
|
--steps 50 --repeat 20 \
|
|
--output ./teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/src/weights/snowbridge_pallet_ethereum_client.rs
|
|
popd
|