forked from mrpt-ros-pkg/mrpt_navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
21 lines (21 loc) · 1.01 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# We cannot use latest ROS distributions in travis since we are limited to trusty
# So, let's use docker.
sudo: required
dist: trusty
language: c++
notifications:
env:
matrix:
- CI_ROS_DISTRO=kinetic MRPT_BRANCH="2.0" MRPT_PPA="ppa:joseluisblancoc/mrpt"
- CI_ROS_DISTRO=melodic MRPT_BRANCH="2.0" MRPT_PPA="ppa:joseluisblancoc/mrpt"
- CI_ROS_DISTRO=kinetic MRPT_BRANCH="1.5" MRPT_PPA="ppa:joseluisblancoc/mrpt-1.5"
# - ROS_DISTRO=kinetic BUILDER='catkin_make_isolated' BUILDER='catkin_make'
before_script:
- case $CI_ROS_DISTRO in "kinetic") export DISTRO=xenial;; "melodic") export DISTRO=bionic;; esac;
- export DOCKER_IMAGE=ubuntu:$DISTRO
- export CI_SOURCE_PATH=$(pwd)
- export REPOSITORY_NAME=${PWD##*/}
- if [ ! "$ROS_PARALLEL_JOBS" ]; then export ROS_PARALLEL_JOBS="-j8 -l8"; fi
- docker images
script:
- docker run -v $HOME:$HOME -e MRPT_PPA -e CI_SOURCE_PATH -e REPOSITORY_NAME -e HOME -e DISTRO -e CI_ROS_DISTRO -e ROS_PARALLEL_JOBS $DOCKER_IMAGE bash -c 'cd $CI_SOURCE_PATH; source .travis.sh'