greenhouse/.travis.yml

23 lines
705 B
YAML
Raw Normal View History

2013-05-23 11:29:48 -07:00
language:
- cpp
- python
python:
- "2.7"
compiler:
- gcc
install:
2013-07-12 14:01:43 -07:00
- sudo sh -c 'echo "deb http://packages.ros.org/ros-shadow-fixed/ubuntu precise main" > /etc/apt/sources.list.d/ros-latest.list'
2013-05-23 11:29:48 -07:00
- wget http://packages.ros.org/ros.key -O - | sudo apt-key add -
2013-07-12 13:45:46 -07:00
- sudo apt-get update
- sudo apt-get install python-catkin-pkg python-rosdep
2013-05-23 11:29:48 -07:00
- sudo rosdep init
2013-07-12 13:45:46 -07:00
- rosdep update
2013-07-12 13:56:37 -07:00
- rosdep install --from-paths . --ignore-src --rosdistro hydro -y
2013-05-23 11:29:48 -07:00
script:
2013-07-12 13:45:46 -07:00
- source /opt/ros/hydro/setup.bash
2013-07-23 10:20:07 -07:00
- catkin_make tests --source . -j1 -DCATKIN_ENABLE_TESTING=ON
- catkin_make run_tests --source . -j1 -DCATKIN_ENABLE_TESTING=ON
- catkin_make install --source . -j1 -DCATKIN_ENABLE_TESTING=ON