Skip to content

Commit e4e6529

Browse files
committed
Noetic installation and remove cgal_catkin.
1 parent 05a42eb commit e4e6529

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ Field and Service Robotics. Springer, Singapore, 2021.
1313

1414
[![Watch the video](https://img.youtube.com/vi/u1UOqdJoK9s/sddefault.jpg)](https://youtu.be/u1UOqdJoK9s)
1515

16-
## Installation on Ubuntu 18.04 and ROS melodic
17-
Install [ROS melodic](http://wiki.ros.org/melodic/Installation/Ubuntu).
16+
## Installation on Ubuntu 20.04 and ROS noetic
17+
Install [ROS noetic](http://wiki.ros.org/noetic/Installation/Ubuntu).
1818
Install [mono](https://www.mono-project.com/download/stable/#download-lin-ubuntu).
1919

2020
Create a workspace.
@@ -24,7 +24,7 @@ mkdir -p catkin_ws/src
2424
cd catkin_ws
2525
catkin init
2626
catkin config --cmake-args -DCMAKE_BUILD_TYPE=Release
27-
catkin config --extend /opt/ros/melodic
27+
catkin config --extend /opt/ros/noetic
2828
```
2929

3030
Download package dependencies from [dependencies.rosinstall](install/dependencies.rosinstall).<br>

install/dependencies.rosinstall

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
- git: {local-name: catkin_simple, uri: 'git@github.com:catkin/catkin_simple.git', version: 0e62848b12da76c8cc58a1add42b4f894d1ac21e}
2-
- git: {local-name: cgal_catkin, uri: 'git@github.com:ethz-asl/cgal_catkin.git', version: releases/CGAL-5.0.3}
32
- git: {local-name: polygon_coverage_planning, uri: 'git@github.com:ethz-asl/polygon_coverage_planning.git', version: v2.0.4}
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
- git: {local-name: catkin_simple, uri: 'https://github.com/catkin/catkin_simple.git', version: 0e62848b12da76c8cc58a1add42b4f894d1ac21e}
2-
- git: {local-name: cgal_catkin, uri: 'https://github.com/ethz-asl/cgal_catkin.git', version: releases/CGAL-5.0.3}
32
- git: {local-name: polygon_coverage_planning, uri: 'https://github.com/ethz-asl/polygon_coverage_planning.git', version: v2.0.4}

install/prepare-jenkins-slave.sh

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,17 @@ ROS_VERSION=`rosversion -d`
44
echo "ROS version: ${ROS_VERSION}"
55

66
# Build dependencies.
7-
sudo apt-get install -y python-wstool python-catkin-tools
7+
if [[ $ROS_VERSION = 'melodic' ]]
8+
then
9+
sudo apt install -y python-wstool python-catkin-tools
10+
else
11+
sudo apt install -y python3-wstool python3-catkin-tools
12+
fi
813

914
# Package dependencies.
1015
echo "Installing CGAL dependencies."
11-
sudo apt-get install -y libgmp-dev libmpfr-dev
16+
sudo apt install -y libgmp-dev libmpfr-dev
1217
echo "Installing MONO dependencies."
13-
sudo apt-get install -y mono-devel
18+
sudo apt install -y mono-devel
1419
echo "Installig GLOG dependencices."
15-
sudo apt-get install -y libgoogle-glog-dev
20+
sudo apt install -y libgoogle-glog-dev

polygon_coverage_geometry/package.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
<buildtool_depend>catkin</buildtool_depend>
1414
<buildtool_depend>catkin_simple</buildtool_depend>
1515

16-
<depend>cgal_catkin</depend>
1716
<depend>rosconsole</depend>
1817
<depend>roslib</depend>
1918
<depend>polygon_coverage_solvers</depend>

polygon_coverage_ros/package.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
<depend>polygon_coverage_msgs</depend>
2626
<depend>polygon_coverage_geometry</depend>
2727
<depend>polygon_coverage_planners</depend>
28-
<depend>cgal_catkin</depend>
2928

3029
<exec_depend>rviz_polygon_tool</exec_depend>
3130

rviz_polygon_tool/package.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
<depend>polygon_coverage_msgs</depend>
2121
<depend>polygon_coverage_geometry</depend>
2222
<depend>geometry_msgs</depend>
23-
<depend>cgal_catkin</depend>
2423

2524
<export>
2625
<rviz plugin="${prefix}/plugin_description.xml"/>

0 commit comments

Comments
 (0)