From d4a5c43578405269c6b802c3c9f726a44e879953 Mon Sep 17 00:00:00 2001 From: Mara Broda Date: Tue, 22 Mar 2022 13:56:37 +0100 Subject: [PATCH] [ci] don't exclude frame_system from benchmarks --- scripts/run_benches_for_runtime.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scripts/run_benches_for_runtime.sh b/scripts/run_benches_for_runtime.sh index d9a836a4f7ed..49ea1ecb3b05 100755 --- a/scripts/run_benches_for_runtime.sh +++ b/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