Skip to content

Commit

Permalink
Update regression-report.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
relentless-pursuit authored Jan 4, 2025
1 parent 80e4a34 commit 7164372
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/regression-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -586,18 +586,18 @@ jobs:
if [ -f "$NEW_MODULE_CONFIG" ]; then
echo "Generating report for new module"
java -jar "$DIFFTOOL_JAR" -r "$REPO" -p "$PR_BRANCH" -pc "$NEW_MODULE_CONFIG" \
-m single -l "$PROJECTS_FILE" -xm "-Dcheckstyle.config.folder=$CONFIG_FOLDER" \
-m single -l "$PROJECTS_FILE" -xm "-Dconfig.folder=$CONFIG_FOLDER" \
--allowExcludes --diffToolJarPath "$PATCH_DIFF_TOOL_JAR"
elif [ -f "$PATCH_CONFIG" ]; then
echo "Generating report with patch config"
java -jar "$DIFFTOOL_JAR" -r "$REPO" -b "$BASE_BRANCH" \
-p "$PR_BRANCH" -bc "$DIFF_CONFIG" \
-pc "$PATCH_CONFIG" -l "$PROJECTS_FILE" -xm "-Dcheckstyle.config.folder=$CONFIG_FOLDER" \
-pc "$PATCH_CONFIG" -l "$PROJECTS_FILE" -xm "-Dconfig.folder=$CONFIG_FOLDER" \
--allowExcludes --diffToolJarPath "$PATCH_DIFF_TOOL_JAR"
else
echo "Generating standard diff report"
java -jar "$DIFFTOOL_JAR" -r "$REPO" -b "$BASE_BRANCH" -p "$PR_BRANCH" \
-c "$DIFF_CONFIG" -l "$PROJECTS_FILE" -xm "-Dcheckstyle.config.folder=$CONFIG_FOLDER" \
-c "$DIFF_CONFIG" -l "$PROJECTS_FILE" -xm "-Dconfig.folder=$CONFIG_FOLDER" \
--allowExcludes --diffToolJarPath "$PATCH_DIFF_TOOL_JAR"
fi
Expand Down

0 comments on commit 7164372

Please # to comment.