Skip to content
This repository has been archived by the owner on Dec 13, 2024. It is now read-only.

Commit

Permalink
Fix type of paths in launch file (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
pac48 authored Aug 2, 2024
1 parent a44ee0a commit 130fdde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
uses: PickNikRobotics/moveit_pro_ci/.github/workflows/workspace_integration_test.yaml@main
with:
image_tag: ${{ github.event.inputs.image_tag || null }}
colcon_test_args: "--executor sequential"
secrets: inherit

ensure-no-ssh-in-gitmodules:
Expand Down
2 changes: 1 addition & 1 deletion src/external_dependencies/gz_ros2_control
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,9 @@ def generate_agent_plus_drivers_launch_description(
# Additionally, we must convert this list of locations to a comma separated list
# because standard lists cannot be used as launch arguments.
objective_library_directories = ",".join(
system_config_parser.get_objective_library_paths() + [str(test_objective_path)]
str(path)
for path in system_config_parser.get_objective_library_paths()
+ [test_objective_path]
)

# Get launch description for MoveIt Pro Agent nodes
Expand Down

0 comments on commit 130fdde

Please sign in to comment.