Skip to content

Commit 3031418

Browse files
authored
Merge pull request ros-industrial-attic#42 from 130s/fix/compilation_catkin_tools
Missing dependency, add metapkg, add a config for Travis CI.
2 parents 88c74a0 + 2b65930 commit 3031418

File tree

4 files changed

+56
-0
lines changed

4 files changed

+56
-0
lines changed

.travis.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
sudo: required
2+
dist: trusty
3+
language: generic
4+
compiler:
5+
- gcc
6+
notifications:
7+
email:
8+
on_success: always
9+
on_failure: always
10+
# recipients:
11+
# - jane@doe
12+
env:
13+
matrix:
14+
- USE_DEB=true ROS_DISTRO="indigo" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
15+
- USE_DEB=true ROS_DISTRO="indigo" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu
16+
- USE_DEB=true ROS_DISTRO="jade" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
17+
- USE_DEB=true ROS_DISTRO="jade" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu
18+
- USE_DEB=true ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
19+
- USE_DEB=true ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu
20+
matrix:
21+
allow_failures:
22+
- env: USE_DEB=true ROS_DISTRO="jade" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
23+
- env: USE_DEB=true ROS_DISTRO="jade" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu
24+
- env: USE_DEB=true ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
25+
- env: USE_DEB=true ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu
26+
install:
27+
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
28+
script:
29+
- .ci_config/travis.sh
30+
# - source ./travis.sh # Enable this when you have a package-local script

map_creator/package.xml

+1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
<build_depend>message_generation</build_depend>
4444
<build_depend>message_generation</build_depend>
4545
<build_depend>octomap</build_depend>
46+
<build_depend>rviz_visual_tools</build_depend>
4647
<build_depend>tf2</build_depend>
4748
<build_depend>hdf5</build_depend>
4849
<build_depend>pcl_ros</build_depend>

reuleaux/CMakeLists.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
cmake_minimum_required(VERSION 2.8.3)
2+
project(reuleaux)
3+
find_package(catkin REQUIRED)
4+
catkin_metapackage()

reuleaux/package.xml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?xml version="1.0"?>
2+
<package>
3+
<name>reuleaux</name>
4+
<version>0.0.0</version>
5+
<description>reuleaux metapackage</description>
6+
<maintainer email="[email protected]">Abhijit Makhal</maintainer>
7+
<author email="[email protected]">Abhijit Makhal</author>
8+
<license>Apache 2.0</license>
9+
<url type="website">http://wiki.ros.org/reuleaux</url>
10+
<url type="repository">https://github.com/ros-industrial-consortium/reuleaux</url>
11+
<url type="bugtracker">https://github.com/ros-industrial-consortium/reuleaux/issues</url>
12+
13+
<buildtool_depend>catkin</buildtool_depend>
14+
<run_depend>base_placement_plugin</run_depend>
15+
<run_depend>map_creator</run_depend>
16+
<run_depend>workspace_visualization</run_depend>
17+
18+
<export>
19+
<metapackage/>
20+
</export>
21+
</package>

0 commit comments

Comments
 (0)