Skip to content

Commit

Permalink
Merge pull request nobleo#12 from nobleo/noetic
Browse files Browse the repository at this point in the history
Test for noetic
  • Loading branch information
Timple authored Jan 27, 2021
2 parents cd39092 + da089c3 commit 229dee1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ jobs:
strategy:
matrix:
env:
- {ROS_DISTRO: melodic, ROS_REPO: main, UPSTREAM_WORKSPACE: 'github:nobleo/mobile_robot_simulator#fix/install'}
- {ROS_DISTRO: melodic, ROS_REPO: main}
- {ROS_DISTRO: noetic, ROS_REPO: main}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
Expand Down
6 changes: 0 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -110,12 +110,6 @@ install(
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
)

install(
FILES
${PROJECT_NAME}_plugin.xml
DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}
)

catkin_install_python(
PROGRAMS
nodes/path_interpolator
Expand Down
2 changes: 1 addition & 1 deletion src/tracking_pid/path_interpolator.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ def _process_path(self, path_msg):
self.reconfigure_client = dynamic_reconfigure.client.Client("controller", timeout=1)

self._path_poses = path_msg.poses
self._sections = zip(self._path_poses, self._path_poses[1:])
self._sections = list(zip(self._path_poses, self._path_poses[1:]))

if not self._timer:
self.start_path()
Expand Down

0 comments on commit 229dee1

Please sign in to comment.