Skip to content

Commit

Permalink
ci: fix regression reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
triceo authored Jan 12, 2025
1 parent e76a7d0 commit 7e0937f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/performance_score_director.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ jobs:
exit 0
elif [ "$SUT_RANGE_START" -gt "$BASELINE_RANGE_END" ]; then
echo "### 🚀🚀🚀 Statistically significant improvement 🚀🚀🚀" >> $GITHUB_STEP_SUMMARY
elif [ "$SUT_BASELINE_START" -gt "$SUT_RANGE_END" ]; then
elif [ "$BASELINE_RANGE_START" -gt "$SUT_RANGE_END" ]; then
echo "### ‼️‼️‼️ Statistically significant regression ‼️‼️‼️" >> $GITHUB_STEP_SUMMARY
export FAIL=true
else
Expand Down

0 comments on commit 7e0937f

Please sign in to comment.