Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions ros_buildfarm/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,12 @@ def call_build_tool(
'--event-handlers', 'console_direct+',
'--executor', 'sequential']

# In Foxy and prior, xunit2 format is needed to make Jenkins xunit plugin 2.x happy
# After Foxy, we introduced per-package changes to make local builds and CI
# builds act the same.
if rosdistro_name in ('dashing', 'eloquent', 'foxy'):
cmd += ['--pytest-args', '-o', 'junit_family=xunit2']

if force_cmake:
if build_tool == 'catkin_make_isolated':
cmd.append('--force-cmake')
Expand Down