Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

Commit 94b9030

Browse files
authored
Merge pull request #1 from furushchev/ci
Enable travis
2 parents f912a7e + 27b09c1 commit 94b9030

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

.travis.rosinstall

Whitespace-only changes.

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: generic
2+
services:
3+
- docker
4+
cache:
5+
directories:
6+
- $HOME/.ccache
7+
env:
8+
global:
9+
- CCACHE_DIR=$HOME/.ccache
10+
matrix:
11+
- ROS_DISTRO="kinetic"
12+
install:
13+
- git clone --quiet --depth 1 https://github.com/ros-industrial/industrial_ci.git .industrial_ci
14+
script:
15+
- ".industrial_ci/travis.sh"

package.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,11 @@
4949
<!-- Use doc_depend for packages you need only for building documentation: -->
5050
<!-- <doc_depend>doxygen</doc_depend> -->
5151
<buildtool_depend>catkin</buildtool_depend>
52+
<depend>geometry_msgs</depend>
53+
<depend>std_msgs</depend>
54+
<build_depend>message_generation</build_depend>
55+
<build_export_depend>message_generation</build_export_depend>
56+
<exec_depend>message_runtime</exec_depend>
5257

5358

5459
<!-- The export tag contains other, unspecified, tags -->

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
from catkin_pkg.python_setup import generate_distutils_setup
33

44
d = generate_distutils_setup(
5-
packages=['bimanual_hubo'],
6-
scripts=[''],
5+
packages=['RelaxedIK'],
76
package_dir={'': 'src'}
87
)
98

0 commit comments

Comments
 (0)