Skip to content

Commit

Permalink
ci: disable frame_system in check_benchmarks
Browse files Browse the repository at this point in the history
  • Loading branch information
wischli committed Nov 3, 2023
1 parent 29585ee commit 47ce8d1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion scripts/check_benchmarks.sh
Original file line number Diff line number Diff line change
@@ -49,7 +49,11 @@ else
echo "Benchmarking all pallets"
for pallet in $all_pallets
do
run_benchmark $pallet
if [[ $pallet != "frame_system" ]]; then
run_benchmark $pallet
else
echo "WARNING: Skipping frame_system. Please re-enable at Polkadot v1.0.0+ support."
fi
done
fi

0 comments on commit 47ce8d1

Please sign in to comment.