Skip to content

Commit

Permalink
[kinetic] Update Travis config to run on Ubuntu 16.04 via Docker.
Browse files Browse the repository at this point in the history
  • Loading branch information
130s committed Oct 7, 2016
1 parent 0bda254 commit eb366e9
Showing 1 changed file with 15 additions and 31 deletions.
46 changes: 15 additions & 31 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,20 @@
sudo: required
dist: trusty
# Force travis to use its minimal image with default Python settings
language: generic
# This config file for Travis CI utilizes ros-industrial/industrial_ci package.
# For more info for the package, see https://github.com/ros-industrial/industrial_ci/blob/master/README.rst
sudo: required
dist: trusty
language: generic
compiler:
- gcc
notifications:
email:
on_failure: always
recipients:
- gm130s@gmail.com # Change this to yours should you copy this file.
env:
global:
- CATKIN_WS=~/catkin_ws
- CATKIN_WS_SRC=${CATKIN_WS}/src
matrix:
- CI_ROS_DISTRO="indigo"
# - CI_ROS_DISTRO="jade"
install:
- sudo sh -c 'echo "deb http://packages.ros.org/ros/ubuntu trusty 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-rosdep python-catkin-tools
- sudo rosdep init
- rosdep update
# Use rosdep to install all dependencies (including ROS itself)
- rosdep install --from-paths ./ -i -y --rosdistro $CI_ROS_DISTRO
- USE_DEB=true ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
- USE_DEB=true ROS_DISTRO="kinetic" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu
before_config:
- git clone https://github.com/ros-industrial/industrial_ci.git .ci_config
script:
- source /opt/ros/$CI_ROS_DISTRO/setup.bash
- mkdir -p $CATKIN_WS_SRC
- ln -s $TRAVIS_BUILD_DIR $CATKIN_WS_SRC
- cd $CATKIN_WS
- catkin init
# Enable install space
#- catkin config --install
# Build [and Install] packages
- catkin build --limit-status-rate 0.1 --no-notify -DCMAKE_BUILD_TYPE=Release
# Build tests
- catkin build --limit-status-rate 0.1 --no-notify --make-args tests
# Run tests
- catkin run_tests
- source .ci_config/travis.sh

0 comments on commit eb366e9

Please sign in to comment.