From 4c346cb44e7fdb44eb2a78995aaf7749909d26e8 Mon Sep 17 00:00:00 2001 From: Mara Robin B <mara@broda.me> Date: Wed, 23 Mar 2022 12:33:40 +0100 Subject: [PATCH] [ci] don't exclude frame_system from benchmarks (#5179) --- polkadot/scripts/run_benches_for_runtime.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/polkadot/scripts/run_benches_for_runtime.sh b/polkadot/scripts/run_benches_for_runtime.sh index d9a836a4f7e..49ea1ecb3b0 100755 --- a/polkadot/scripts/run_benches_for_runtime.sh +++ b/polkadot/scripts/run_benches_for_runtime.sh @@ -17,8 +17,7 @@ cargo +nightly build --profile production --locked --features=runtime-benchmarks --list |\ tail -n+2 |\ cut -d',' -f1 |\ - uniq | \ - grep -v frame_system > "${runtime}_pallets" + uniq > "${runtime}_pallets" # For each pallet found in the previous command, run benches on each function while read -r line; do -- GitLab