forked from mavlink/mavros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
74 lines (74 loc) · 3.5 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
68
69
70
71
72
73
74
# thanks to jsk-ros-pkg
language: cpp
compiler:
- gcc
#- clang
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "ieyA/jKHN1rVAQ8qFvXx6wdcUozFR5QBxUpQuEcItl4yv0bPnRp0xO9X/BhNFt6V85L8jEw9XNz4uHTUeAtghZZxpKCQ8de1NP49d7boyCTLQx/WsJ/bSPubAZOcnvbi9SoOTyymM94jdA1k46ndznI1ZZ713uSrPdIcg6o8Q9A="
#- ROS_DISTRO=hydro MAVLINK_DIALECT=ardupilotmega
- ROS_DISTRO=hydro MAVLINK_DIALECT=pixhawk
before_install:
- 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.ros.org/ros-shadow-fixed/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 python-rosinstall
# 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:
# GCC 4.9 for proper C++11
#- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
#- sudo apt-get -qq update
#- sudo sudo apt-get -qq install gcc-4.9 g++-4.9
#- export CXX="g++-4.9" CC="gcc-4.9"
# Create workspace
- mkdir -p ~/ros/ws_$REPOSITORY_NAME/src
- cd ~/ros/ws_$REPOSITORY_NAME/src
- wstool init .
#- wstool set $REPOSITORY_NAME --git https://github.com/vooon/mavros.git -y
#- wstool update -j10
- 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
- export CATKIN_PACKAGES="`find $CI_SOURCE_PATH -name package.xml | xargs -n 1 dirname | xargs -n 1 basename`"
script: # All commands must exit with code 0 on success. Anything else is considered failure.
- cd ~/ros/ws_$REPOSITORY_NAME
- rospack profile
- catkin_make -j4 -DMAVLINK_DIALECT=$MAVLINK_DIALECT
- catkin_make install
- rm -fr devel src build; source install/setup.bash
after_failure:
- if [ -e ./build/Testing/Temporary/LastTest.log ]; then cat ./build/Testing/Temporary/LastTest.log; fi
- find ${HOME}/.ros/test_results -type f -exec echo "== {} ==" \; -exec cat {} \;
- for file in ${HOME}/.ros/log/rostest-*; do echo "=== $file ==="; cat $file; done
addons:
coverity_scan:
project:
name: "mavlink/mavros"
description: "Build submitted via Travis CI"
notification_email: [email protected]
build_command_prepend: cd ~/ros/ws_$REPOSITORY_NAME/src/mavros &&
echo -e 'cmake_minimum_required(VERSION 2.8.3)\nadd_subdirectory(libmavconn)\nadd_subdirectory(mavros)\nadd_subdirectory(mavros_extras)' > CMakeLists.txt &&
cmake .
build_command: make -j4
branch_pattern: coverity_scan
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/b856f174ff9736ad23ec
on_success: change
on_failure: always
on_start: false