-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.travis.yml
60 lines (55 loc) · 1.53 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
sudo: true
dist: trusty
language:
- generic
cache:
- apt
env:
global:
- ROS_DISTRO=indigo
- ROS_CI_DESKTOP="`lsb_release -cs`"
- CI_SOURCE_PATH=$(pwd)
# Install package dependencies
before_install:
# Install ROS
- sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu $ROS_CI_DESKTOP main" > /etc/apt/sources.list.d/ros-latest.list'
- wget http://packages.ros.org/ros.key -O - | sudo apt-key add -
- sudo apt-get update
- sudo apt-get install -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-catkin
# Install docs tools
- sudo apt-get install python-numpydoc ros-$ROS_DISTRO-rosdoc-lite
# Install coveralls
- pip install coveralls --user
# Prepare rosdep to install dependencies.
- source /opt/ros/$ROS_DISTRO/setup.bash
- sudo rosdep init
- rosdep update
# Create a catkin workspace with the package under integration.
install:
- mkdir -p ~/catkin_ws/src
- cd ~/catkin_ws/src
- catkin_init_workspace
- cd ~/catkin_ws
- catkin_make
- source ~/catkin_ws/devel/setup.bash
- cd ~/catkin_ws/src
- ln -s $CI_SOURCE_PATH .
# Install all dependencies
before_script:
- cd ~/catkin_ws
- rosdep install -y --from-paths src --ignore-src --rosdistro $ROS_DISTRO
# Compile
script:
- cd ~/catkin_ws
- catkin_make install
- source devel/setup.bash
# Run the tests
- catkin_make run_tests
- catkin_test_results
# Build the docs
- cd ~/catkin_ws/src/baldor
- rosdoc_lite .
# Run coverage
- nosetests tests/ --with-coverage --cover-package=baldor
after_success:
- coveralls