Skip to content

Commit

Permalink
Merge pull request ros-controls#8 from davetcoleman/hydro-devel
Browse files Browse the repository at this point in the history
Added Travis support
  • Loading branch information
davetcoleman committed Oct 30, 2013
2 parents f5b9b98 + fafc8ad commit 415ac3e
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
48 changes: 48 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Travis Continuous Integration Configuration File For ROS Control Projects
# Author: Dave Coleman
language:
- cpp
- python
python:
- "2.7"
compiler:
- gcc
notifications:
email:
recipients:
- [email protected]
- [email protected]
on_success: change #[always|never|change] # default: change
on_failure: change #[always|never|change] # default: always
before_install: # Use this to prepare the system to install prerequisites or dependencies
# Define some config vars
- export ROS_DISTRO=hydro
- export CI_SOURCE_PATH=$(pwd)
- export REPOSITORY_NAME=${PWD##*/}
- echo "Testing branch $TRAVIS_BRANCH of $REPOSITORY_NAME"
- sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu precise 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 -qq
- sudo apt-get install -qq -y python-catkin-pkg python-rosdep python-wstool ros-$ROS_DISTRO-catkin ros-$ROS_DISTRO-ros
# Setup rosdep
- sudo rosdep init
- rosdep update
install: # Use this to install any prerequisites or dependencies necessary to run your build
# Create workspace
- mkdir -p ~/ros/ws_ros_controls/src
- cd ~/ros/ws_ros_controls/src
- wstool init .
# Download non-debian stuff
- wstool merge https://raw.github.com/ros-controls/ros_control/hydro-devel/ros_control.rosinstall
- wstool update
# Delete the ros_control.rosinstall version of this repo and use the one of the branch we are testing
- rm -rf $REPOSITORY_NAME
- ln -s $CI_SOURCE_PATH . # Link the repo we are testing to the new workspace
- cd ../
# Install dependencies for source repos
- rosdep install --from-paths src --ignore-src --rosdistro $ROS_DISTRO -y
before_script: # Use this to prepare your build for testing e.g. copy database configurations, environment variables, etc.
- source /opt/ros/$ROS_DISTRO/setup.bash
script: # All commands must exit with code 0 on success. Anything else is considered failure.
- catkin_make -j2

8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
control_toolbox
===========

See [ros_control documentation](http://ros.org/wiki/ros_control) on ros.org

### Build Status

[![Build Status](https://travis-ci.org/ros-controls/control_toolbox.png?branch=hydro-devel)](https://travis-ci.org/ros-controls/control_toolbox)

0 comments on commit 415ac3e

Please sign in to comment.