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 16, 2024
1 parent 8fcd7ca commit 1cdebb9
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/nightly-windows-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ jobs:
cmake_build_type:
- 'Debug'
- 'RelWithDebInfo'
test_filter:
- '-R "BlackboxTests|example_tests"'
- '-E "BlackboxTests|example_tests"'
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 == '-R "BlackboxTests|example_tests"' && 'blackbox' ||
matrix.test_filter == '-E "BlackboxTests|example_tests"' && 'unittest' }}-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 }}"
fastdds_branch: 'master'

0 comments on commit 1cdebb9

Please sign in to comment.