mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +00:00
d18da3180f
* 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
16 lines
383 B
Bash
Executable File
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
|