-
Notifications
You must be signed in to change notification settings - Fork 61
/
.travis.yml
48 lines (48 loc) · 1.54 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
# 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
dist: bionic
language:
- cpp
- python
python:
- "2.7"
compiler:
- gcc
cache:
apt: true
pip: true
directories:
- $HOME/.ccache
- $HOME/.cache/pip
- $HOME/apt-cacher-ng
env:
global:
- ROSWS=wstool
- BUILDER=catkin
- USE_DOCKER=true
- USE_TRAVIS=true
- CATKIN_PARALLEL_JOBS='-p2'
- CATKIN_PARALLEL_TEST_JOBS='-p1'
- ROS_PARALLEL_JOBS="-j2"
- ROS_PARALLEL_TEST_JOBS='-j1'
matrix:
- ROS_DISTRO=indigo USE_DEB=true
- ROS_DISTRO=indigo USE_DEB=false NOT_TEST_INSTALL=true
- ROS_DISTRO=kinetic USE_DEB=false NOT_TEST_INSTALL=true
- ROS_DISTRO=melodic USE_DEB=false NOT_TEST_INSTALL=true ROSDEP_ADDITIONAL_OPTIONS="-n -q -r --ignore-src --skip-keys leap_motion" #BEFORE_SCRIPT: to build hrpsys on melodic. ROSDEP_ADDITIONAL_OPTIONS: leap_motion (run_depend of hironx_tutorial) is not released on melodic.
matrix:
# allow_failures:
# - env: ROS_DISTRO=indigo USE_DEB=false NOT_TEST_INSTALL=true
notifications:
email:
recipients:
on_success: always #[always|never|change] # default: change
on_failure: always #[always|never|change] # default: always
script: source .travis/travis.sh