greenhouse/.travis.yml

24 lines
589 B
YAML
Raw Normal View History

2013-05-23 11:29:48 -07:00
language:
- cpp
- python
python:
- "2.7"
compiler:
- gcc
2013-07-12 13:45:46 -07:00
- clang
2013-05-23 11:29:48 -07:00
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
- catkin_make tests
- catkin_make run_tests
2013-05-23 11:29:48 -07:00
- catkin_make install