Skip to content

Commit

Permalink
Split test using name filter regex
Browse files Browse the repository at this point in the history
Signed-off-by: Raul Sanchez-Mateos <[email protected]>
  • Loading branch information
rsanchez15 committed Dec 17, 2024
1 parent 8fcd7ca commit c046ae9
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/nightly-windows-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,13 @@ jobs:
cmake_build_type:
- 'Debug'
- 'RelWithDebInfo'
test_filter:
- 'blackbox'
- 'unittest'
uses: eProsima/Fast-DDS/.github/workflows/reusable-windows-ci.yml@master
with:
label: 'nightly-sec-${{ matrix.security }}-windows-ci-master'
label: nightly-sec-${{ matrix.security }}-${{ matrix.cmake_build_type }}-${{ matrix.test_filter }}-windows-ci-master
cmake-config: ${{ matrix.cmake_build_type }}
cmake-args: "-DSECURITY=${{ matrix.security }}"
ctest-args: "-LE xfail"
ctest-args: -LE xfail ${{ matrix.test_filter == 'blackbox' && '-R "BlackboxTests|example_tests"' || matrix.test_filter == 'unittest' && '-E "BlackboxTests|example_tests"' }}
fastdds_branch: 'master'

0 comments on commit c046ae9

Please sign in to comment.