Skip to content

Commit

Permalink
Rerun failed tests with ctest option instead of colcon's (#4081)
Browse files Browse the repository at this point in the history
Signed-off-by: EduPonz <[email protected]>
  • Loading branch information
EduPonz committed Dec 1, 2023
1 parent c2bba24 commit 1a07097
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/reusable-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -529,14 +529,14 @@ jobs:
$ctestargs = '${{ inputs.ctest-args }}'.split(" ")
# Show the arguments
EchoArgs --packages-select fastrtps --retest-until-pass 3 --event-handlers=console_direct+ `
--merge-install --executor sequential --ctest-args $ctestargs `
EchoArgs --packages-select fastrtps --event-handlers=console_direct+ `
--merge-install --executor sequential --ctest-args $ctestargs --repeat until-pass:3 `
--timeout 300 --output-junit $junit
# Run the testing
"::group::ctest summary"
colcon test --packages-select fastrtps --retest-until-pass 3 --event-handlers=console_direct+ `
--merge-install --executor sequential --ctest-args $ctestargs `
colcon test --packages-select fastrtps --event-handlers=console_direct+ `
--merge-install --executor sequential --ctest-args $ctestargs --repeat until-pass:3 `
--timeout 300 --output-junit $junit
"::endgroup::"
Expand Down

0 comments on commit 1a07097

Please sign in to comment.