Skip to content

Commit

Permalink
.github/workflows: More reporting from action-junit-report.
Browse files Browse the repository at this point in the history
Update the configuration of the action-junit-report in ci-bazel.yml to include additional options for generating test reports. The include_passed, detailed_summary, annotate_notice, and follow_symlink options have been added to the action configuration.
  • Loading branch information
ivucica authored Sep 18, 2024
1 parent 261df2f commit edd52da
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci-bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,10 @@ jobs:
with:
commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow
report_paths: 'bazel-testlogs/**/test.xml'
include_passed: true
detailed_summary: true
annotate_notice: true
follow_symlink: true
continue-on-error: true
bazel_build_buildbuddy:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -248,4 +252,8 @@ jobs:
with:
commit: ${{github.event.workflow_run.head_sha}} # remove if we don't use separate workflow
report_paths: 'bazel-testlogs/**/test.xml'
include_passed: true
detailed_summary: true
annotate_notice: true
follow_symlink: true
continue-on-error: true

0 comments on commit edd52da

Please sign in to comment.