forked from start-jsk/rtmros_gazebo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
68 lines (67 loc) · 3.72 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
67
# Travis Continuous Integration Configuration File, based on ..
# Generic MoveIt Travis Continuous Integration Configuration File
# Works with all MoveIt! repositories/branches
# Author: Dave Coleman, Jonathan Bohren
language:
- cpp
- python
python:
- "2.7"
compiler:
- gcc
notifications:
email:
recipients:
on_success: always #[always|never|change] # default: change
on_failure: always #[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=groovy
- export ROS_PARALLEL_JOBS=2
- 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'
- sudo sh -c 'echo "deb http://packages.osrfoundation.org/drc/ubuntu precise main" > /etc/apt/sources.list.d/drc-latest.list'
- wget http://packages.ros.org/ros.key -O - | sudo apt-key add -
- wget http://packages.osrfoundation.org/drc.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
- sudo apt-get install drcsim-$ROS_DISTRO ## Ubuntu/Precise
# - sudo apt-get install drcsim ## Ubuntu/Quantal or Ubuntu/Raring
# MongoDB hack - I don't fully understand this but its for moveit_warehouse
- sudo apt-get remove -y mongodb mongodb-10gen
- sudo apt-get install -y mongodb-clients mongodb-server -o Dpkg::Options::="--force-confdef" # default actions
# 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_$REPOSITORY_NAME/src
- cd ~/ros/ws_$REPOSITORY_NAME/src
- wstool init .
- wstool set jsk-ros-pkg/euslisp https://svn.code.sf.net/p/jsk-ros-pkg/code/trunk/euslisp --svn -y
- wstool set jsk-ros-pkg/roseus https://svn.code.sf.net/p/jsk-ros-pkg/code/trunk/roseus --svn -y
- wstool set jsk-ros-pkg/jsk_model_tools https://svn.code.sf.net/p/jsk-ros-pkg/code/trunk/jsk_model_tools --svn -y
- wstool set openrtm_aist_core https://github.com/start-jsk/openrtm_aist_core --git -y
- wstool set openhrp3 https://github.com/start-jsk/openhrp3 --git -y
# currently we need hrpsys source to build gazebo(https://github.com/start-jsk/rtmros_gazebo/blob/master/hrpsys_gazebo_general/catkin.cmake#L13), this must be fixed...
- wstool set hrpsys https://github.com/start-jsk/hrpsys --git -y
- wstool set rtmros_common https://github.com/start-jsk/rtmros_common --git -y
- wstool set rtm-ros-robotics/rtmros_tutorials https://github.com/start-jsk/rtmros_tutorials --git -y
- wstool set ros-perception/laser_assembler https://github.com/ros-perception/laser_assembler --git -y
- wstool set ros-visualization/view_controller_msgs https://github.com/ros-visualization/view_controller_msgs.git --git -y
- wstool update
- ln -s $CI_SOURCE_PATH . # Link the repo we are testing to the new workspace
- cd ../
# Install dependencies for source repos
- rosdep install -r -n --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.
- # find -L . \! -path "*/.*" -type f | xargs egrep -i "(hoge|fuga)" ; if [ $? == 0 ]; then exit 1; fi
- catkin_make -j2
#- catkin_make test
after_failure:
- cat ./build/Testing/Temporary/LastTest.log