Skip to content

Commit 63b1566

Browse files
authored
Use the updated version of test reported (#507)
* Test new version of test reporter Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Add workflow dispatch to nightly CIs Signed-off-by: Raul Sanchez-Mateos <[email protected]> * (tmp) Remove some tests Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Hide passed suites Signed-off-by: Raul Sanchez-Mateos <[email protected]> * Restore changes to use eprosima-ci Signed-off-by: Raul Sanchez-Mateos <[email protected]> --------- Signed-off-by: Raul Sanchez-Mateos <[email protected]>
1 parent 6ea0408 commit 63b1566

File tree

5 files changed

+9
-2
lines changed

5 files changed

+9
-2
lines changed

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

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

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

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

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

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

.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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ jobs:
133133
path: "${{ steps.compile_and_test.outputs.ctest_results_path }}*.xml"
134134
working-directory: 'src'
135135
list-tests: 'failed'
136+
list-suites: 'failed'
136137

137138
#####################################################################
138139
# TSAN
@@ -180,6 +181,7 @@ jobs:
180181
path: "${{ steps.compile_and_test.outputs.ctest_results_path }}*.xml"
181182
working-directory: 'src'
182183
list-tests: 'failed'
184+
list-suites: 'failed'
183185

184186
#####################################################################
185187
# CLANG
@@ -285,6 +287,7 @@ jobs:
285287
working-directory: 'src'
286288
fail-on-empty: 'false'
287289
list-tests: 'failed'
290+
list-suites: 'failed'
288291

289292
#####################################################################
290293
# DOCUMENTATION TEST

.github/workflows/reusable-workflow.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676

7777
- name: Compile and run tests
7878
id: compile_and_test
79-
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@main
79+
uses: eProsima/eProsima-CI/multiplatform/colcon_build_test@v0
8080
with:
8181
packages_names: ${{ env.code_packages_names }}
8282
cmake_args: -DBUILD_TESTS=ON -DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }}
@@ -87,11 +87,12 @@ jobs:
8787

8888

8989
- name: Test Report
90-
uses: eProsima/eProsima-CI/external/test-reporter@main
90+
uses: eProsima/eProsima-CI/external/test-reporter@v0
9191
if: success() || failure()
9292
with:
9393
name: "Report: ${{ inputs.os }} | ${{ matrix.cmake_build_type }} "
9494
path: "${{ steps.compile_and_test.outputs.ctest_results_path }}*.xml"
9595
working-directory: 'src'
9696
path-replace-backslashes: 'true'
9797
list-tests: 'failed'
98+
list-suites: 'failed'

0 commit comments

Comments
 (0)