Files
pezkuwi-subxt/polkadot/scripts/run_all_benches.sh
T
Martin Pugh d18da3180f [CI] Add manual Gitlab job for running all benchmarks (#3515)
* initial weights job

* add artifact

* revertme: changes to test branch

* add benchmarking instructions

* Revert "revertme: changes to test branch"

This reverts commit 2eab22037223967e66a70a16fda14f58e41c6ced.

* add kusama + westend weights jobs

* fix chevdor comments

* add temporary changes for testing again

* fix

* fix

* test sccache fix

* Revert "add temporary changes for testing again"

This reverts commit bb5a7660151f404994c85abfff31502aac89c1d1.

* whitespace
2021-08-04 04:27:53 +02:00

16 lines
383 B
Bash
Executable File

#!/bin/bash
# Runs all benchmarks for all pallets, for each of the runtimes specified below
# Should be run on a reference machine to gain accurate benchmarks
# current reference machine: https://github.com/paritytech/substrate/pull/5848
runtimes=(
polkadot
kusama
westend
)
for runtime in "${runtimes[@]}"; do
"$(dirname "$0")/run_benches_for_runtime.sh" "$runtime"
done