Skip to content

Commit adf61ab

Browse files
committed
Hide passed suites
Signed-off-by: Raul Sanchez-Mateos <raul@eprosima.com>
1 parent 4048bba commit adf61ab

File tree

4 files changed

+30
-21
lines changed

4 files changed

+30
-21
lines changed

.github/workflows/nightly-windows-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
name: nightly-windows-ci
33

44
on:
5+
workflow_dispatch:
56
schedule:
67
- cron: '0 5 * * *'
78

.github/workflows/reusable-ubuntu-ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,9 @@ jobs:
132132
name: "Report: ASAN "
133133
path: "${{ steps.compile_and_test.outputs.ctest_results_path }}*.xml"
134134
working-directory: 'src'
135+
report-title: "Report: ASAN "
135136
list-tests: 'failed'
137+
list-suites: 'failed'
136138

137139
#####################################################################
138140
# TSAN
@@ -179,7 +181,9 @@ jobs:
179181
name: "Report: TSAN "
180182
path: "${{ steps.compile_and_test.outputs.ctest_results_path }}*.xml"
181183
working-directory: 'src'
184+
report-title: "Report: TSAN "
182185
list-tests: 'failed'
186+
list-suites: 'failed'
183187

184188
#####################################################################
185189
# CLANG
@@ -284,7 +288,9 @@ jobs:
284288
path: "${{ steps.compile_and_test.outputs.ctest_results_path }}*.xml"
285289
working-directory: 'src'
286290
fail-on-empty: 'false'
291+
report-title: "Report: Flaky "
287292
list-tests: 'failed'
293+
list-suites: 'failed'
288294

289295
#####################################################################
290296
# DOCUMENTATION TEST

.github/workflows/reusable-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,6 @@ jobs:
9494
path: "${{ steps.compile_and_test.outputs.ctest_results_path }}*.xml"
9595
working-directory: 'src'
9696
path-replace-backslashes: 'true'
97+
report-title: "Report: ${{ inputs.os }} | ${{ matrix.cmake_build_type }} "
9798
list-tests: 'failed'
99+
list-suites: 'failed'

.github/workflows/test.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -68,25 +68,25 @@ jobs:
6868
ref: ${{ github.ref }}
6969
secrets: inherit
7070

71-
# reusable_tests_windows:
72-
# name: reusable_tests
73-
# uses: ./.github/workflows/reusable-windows-ci.yml
74-
# with:
75-
# custom_version_build: ${{ inputs.custom_version_build || 'v3' }}
76-
# dependencies_artifact_postfix: ${{ inputs.dependencies_artifact_postfix || '_nightly' }}
77-
# ref: ${{ github.ref }}
78-
# secrets: inherit
71+
reusable_tests_windows:
72+
name: reusable_tests
73+
uses: ./.github/workflows/reusable-windows-ci.yml
74+
with:
75+
custom_version_build: ${{ inputs.custom_version_build || 'v3' }}
76+
dependencies_artifact_postfix: ${{ inputs.dependencies_artifact_postfix || '_nightly' }}
77+
ref: ${{ github.ref }}
78+
secrets: inherit
7979

80-
# reusable_docker_tests:
81-
# name: reusable_docker_tests
82-
# uses: ./.github/workflows/docker-reusable-workflow.yml
83-
# with:
84-
# fastcdr_branch: ${{ inputs.fastcdr_branch || '2.x' }}
85-
# fastdds_branch: ${{ inputs.fastdds_branch || '3.x' }}
86-
# devutils_branch: ${{ inputs.devutils_branch || '1.x' }}
87-
# ddspipe_branch: ${{ inputs.ddspipe_branch || '1.x' }}
88-
# ddsrouter_branch: ${{ inputs.ddsrouter_branch || github.head_ref || github.ref_name }}
89-
# custom_version_build: ${{ inputs.custom_version_build || 'v3' }}
90-
# dependencies_artifact_postfix: ${{ inputs.dependencies_artifact_postfix || '_nightly' }}
91-
# ref: ${{ github.ref }}
92-
# secrets: inherit
80+
reusable_docker_tests:
81+
name: reusable_docker_tests
82+
uses: ./.github/workflows/docker-reusable-workflow.yml
83+
with:
84+
fastcdr_branch: ${{ inputs.fastcdr_branch || '2.x' }}
85+
fastdds_branch: ${{ inputs.fastdds_branch || '3.x' }}
86+
devutils_branch: ${{ inputs.devutils_branch || '1.x' }}
87+
ddspipe_branch: ${{ inputs.ddspipe_branch || '1.x' }}
88+
ddsrouter_branch: ${{ inputs.ddsrouter_branch || github.head_ref || github.ref_name }}
89+
custom_version_build: ${{ inputs.custom_version_build || 'v3' }}
90+
dependencies_artifact_postfix: ${{ inputs.dependencies_artifact_postfix || '_nightly' }}
91+
ref: ${{ github.ref }}
92+
secrets: inherit

0 commit comments

Comments
 (0)