Skip to content

Commit

Permalink
DROP
Browse files Browse the repository at this point in the history
Signed-off-by: EduPonz <[email protected]>
  • Loading branch information
EduPonz committed Feb 13, 2024
1 parent 2d01d3b commit 12a1536
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions windows/junit_summary/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,17 @@ runs:
$SHOW_SKIPPED_OPTION = "--show-skipped"
}
ls ${{ github.action_path }}\..\..\resources\junit_summary.py
$OUTPUT_FILE_OPTION
$PRINT_SUMMARY_OPTION
$SHOW_FAILED_OPTION
$SHOW_DISABLED_OPTION
$SHOW_SKIPPED_OPTION
$EXIT_CODE=0
foreach ($JUNIT_REPORT in Get-ChildItem -Path ${{ inputs.junit_reports_dir }} -Filter "*.xml") {
$JUNIT_REPORT.FullName
python3 ${{ github.action_path }}\..\..\resources\junit_summary.py --junit-report $JUNIT_REPORT.FullName $OUTPUT_FILE_OPTION $PRINT_SUMMARY_OPTION $SHOW_FAILED_OPTION $SHOW_DISABLED_OPTION $SHOW_SKIPPED_OPTION
$EXIT_CODE += $LASTEXITCODE
Expand Down

0 comments on commit 12a1536

Please sign in to comment.