[ci] Send bench results to S3 (#1417)

* [ci] Send bench results to S3

* move publish stage
This commit is contained in:
Alexander Samusev
2022-07-01 11:42:35 +02:00
committed by GitHub
parent eff2c9e498
commit cc8c8347e4
2 changed files with 27 additions and 17 deletions
+3 -3
View File
@@ -22,17 +22,17 @@ pallets=(
frame_system
)
for p in ${pallets[@]}
for pallet in ${pallets[@]}
do
./artifacts/polkadot-parachain benchmark pallet \
--chain=$benchmarkRuntimeName \
--execution=wasm \
--wasm-execution=compiled \
--pallet=$p \
--pallet=$pallet \
--extrinsic='*' \
--steps=$steps \
--repeat=$repeat \
--json \
--header=./file_header.txt \
--output=$benchmarkOutput
--output=$benchmarkOutput >> ./artifacts/${pallet}_benchmark.json
done