-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
66 lines (61 loc) · 2.56 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
61
62
63
64
65
66
# Generic MoveIt Travis Continuous Integration Configuration File
# Works with all MoveIt! repositories/branches
# Author: Dave Coleman, Jonathan Bohren, Robert Haschke
sudo: required
dist: trusty
language: generic
python:
- "2.7"
compiler:
- gcc
notifications:
email:
recipients:
# - davetcoleman@gmail.com
on_success: change #[always|never|change] # default: change
on_failure: change #[always|never|change] # default: always
env:
global:
# Specify which repositories to build too
- MOVEIT_REPOS="moveit_core"
matrix:
- ROS_DISTRO="jade" ROS_REPOSITORY_PATH=http://packages.ros.org/ros/ubuntu
- ROS_DISTRO="jade" ROS_REPOSITORY_PATH=http://packages.ros.org/ros-shadow-fixed/ubuntu
before_install: # Use this to prepare the system to install prerequisites or dependencies
# Define some config vars
- cmake --version
- find /usr/share -iname "*Eigen*.cmake"
- export CI_SOURCE_PATH=$(pwd)
- export REPOSITORY_NAME=${PWD##*/}
- echo "Testing branch $TRAVIS_BRANCH of $REPOSITORY_NAME on $ROS_DISTRO"
- sudo -E sh -c 'echo "deb $ROS_REPOSITORY_PATH `lsb_release -cs` 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-wstool python-catkin-tools
# 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_moveit/src
- cd ~/ros/ws_moveit/src
# link in the repo we are testing
- ln -s $TRAVIS_BUILD_DIR $REPOSITORY_NAME
- cd ../
# use rosdep to install all dependencies (including ROS itself)
- rosdep install --from-paths ./ -i -y --rosdistro $ROS_DISTRO
before_script: # Build the workspace
- catkin config --extend /opt/ros/$ROS_DISTRO --install --cmake-args -DCMAKE_BUILD_TYPE=Release
- catkin build --no-status --summarize
# determine list of packages to test
- source install/setup.bash
- TEST_PKGS=$(catkin_topological_order $TRAVIS_BUILD_DIR --only-names)
- if [ -n "$TEST_PKGS" ]; then TEST_PKGS="--no-deps $TEST_PKGS"; fi
- if [ "$ALLOW_TEST_FAILURE" != "true" ]; then ALLOW_TEST_FAILURE=false; fi
script: # run tests
- catkin build --no-status --summarize --make-args tests -- $TEST_PKGS
# Run tests
- catkin run_tests --no-status --summarize $TEST_PKGS
# catkin run_tests always returns 0, use catkin_test_results to check for errors
# https://github.com/catkin/catkin_tools/issues/245
- catkin_test_results || $ALLOW_TEST_FAILURE