-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Benchmarks script improvements (#2214)
* Benchmarks script improvements * EOF --------- Co-authored-by: parity-processbot <>
- Loading branch information
Showing
2 changed files
with
26 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,17 @@ | ||
#!/usr/bin/env bash | ||
|
||
target=${1:-production} | ||
steps=${2:-50} | ||
repeat=${3:-20} | ||
|
||
__dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
|
||
${__dir}/benchmarks-ci.sh collectives collectives-polkadot target/production | ||
${__dir}/benchmarks-ci.sh collectives collectives-polkadot target/$target $steps $repeat | ||
|
||
${__dir}/benchmarks-ci.sh assets statemine target/production | ||
${__dir}/benchmarks-ci.sh assets statemint target/production | ||
${__dir}/benchmarks-ci.sh assets westmint target/production | ||
${__dir}/benchmarks-ci.sh assets statemine target/$target $steps $repeat | ||
${__dir}/benchmarks-ci.sh assets statemint target/$target $steps $repeat | ||
${__dir}/benchmarks-ci.sh assets westmint target/$target $steps $repeat | ||
|
||
${__dir}/benchmarks-ci.sh bridge-hubs bridge-hub-polkadot target/production | ||
${__dir}/benchmarks-ci.sh bridge-hubs bridge-hub-kusama target/production | ||
${__dir}/benchmarks-ci.sh bridge-hubs bridge-hub-rococo target/production | ||
${__dir}/benchmarks-ci.sh bridge-hubs bridge-hub-polkadot target/$target $steps $repeat | ||
${__dir}/benchmarks-ci.sh bridge-hubs bridge-hub-kusama target/$target $steps $repeat | ||
${__dir}/benchmarks-ci.sh bridge-hubs bridge-hub-rococo target/$target $steps $repeat |