File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -174,10 +174,10 @@ jobs:
174174 export DIFF_END=$(echo "scale=2; ($OLD_RANGE_END / $NEW_RANGE_END) * 100" | bc)
175175 export FAIL=false
176176
177- if (( $(echo "$DIFF_MID >= 98 .00" | bc -l) && $(echo "$DIFF_MID <= 102 .00"|bc -l) )); then
178- # Ignore differences of up to 2 %.
177+ if (( $(echo "$DIFF_MID >= 97 .00" | bc -l) && $(echo "$DIFF_MID <= 103 .00"|bc -l) )); then
178+ # Ignore differences of up to 3 %.
179179 echo "### Performance unchanged" >> $GITHUB_STEP_SUMMARY
180- echo "(Decided to ignore a very small difference of under 2 %.)" >> $GITHUB_STEP_SUMMARY
180+ echo "(Decided to ignore a very small difference of under 3 %.)" >> $GITHUB_STEP_SUMMARY
181181 else
182182 if [ "$NEW_RANGE_START" -le "$OLD_RANGE_END" ] && [ "$NEW_RANGE_END" -ge "$OLD_RANGE_START" ]; then
183183 if [ "$NEW_RANGE_START" -ge "$OLD_RANGE_MID" ]; then
You can’t perform that action at this time.
0 commit comments