13 lines
470 B
Bash
Executable File
13 lines
470 B
Bash
Executable File
#!/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-zagros target/$target $steps $repeat
|
|
${__dir}/benchmarks-ci.sh assets asset-hub-zagros target/$target $steps $repeat
|
|
${__dir}/benchmarks-ci.sh bridge-hubs bridge-hub-pezkuwichain target/$target $steps $repeat
|
|
${__dir}/benchmarks-ci.sh glutton glutton-zagros target/$target $steps $repeat
|