Skip to content

Commit

Permalink
Refs #20091: Debug
Browse files Browse the repository at this point in the history
Signed-off-by: EduPonz <eduardoponz@eprosima.com>
  • Loading branch information
EduPonz committed Feb 18, 2024
1 parent d2177da commit 0c75283
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/fastcdr-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
workspace: ${{ github.workspace }}

- name: Colcon test
id: test
id: colcon_test
uses: eProsima/eProsima-CI/multiplatform/colcon_test@feature/fastdds_mac_ci_support
with:
colcon_test_args_default: --event-handlers=console_direct+ --return-code-on-test-failure
Expand All @@ -106,11 +106,17 @@ jobs:
packages_names: fastcdr
workspace: ${{ github.workspace }}

- name: Show output
run: |
echo ${{ steps.colcon_test.outputs.ctest_results_path }}
echo ${{ steps.colcon_test.outputs.* }}
echo ${{ join(steps.colcon_test.outputs.*, '\n') }}
- name: Test summary
uses: eProsima/eProsima-CI/multiplatform/junit_summary@feature/fastdds_mac_ci_support
if: ${{ !cancelled() && !contains(github.event.pull_request.labels.*.name, 'no-test') }}
with:
junit_reports_dir: "${{ steps.test.outputs.ctest_results_path }}"
junit_reports_dir: ${{ steps.colcon_test.outputs.ctest_results_path }}
print_summary: 'True'
show_failed: 'True'
show_disabled: 'False'
Expand Down

0 comments on commit 0c75283

Please sign in to comment.