-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
37 lines (33 loc) · 944 Bytes
/
.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
# Specify xenial linux distribution and minimal language support
sudo: required
language: minimal
dist: xenial
# Setup build cache
cache:
apt: true
ccache: true
directories:
- $HOME/.ccache
- /tmp/beam_dependencies
# Set global variables
env:
global:
- CI_SOURCE_PATH=$(pwd)
- CONTINUOUS_INTEGRATION='True'
# Check installation script
install:
- cd $CI_SOURCE_PATH
- travis_wait 120 bash ./scripts/install.bash
# Run unit test scripts
script:
- cd $HOME/catkin_ws/build/libbeam
- bash ./beam_calibration/run_all_tests.bash
- bash ./beam_colorize/run_all_tests.bash
- bash ./beam_containers/run_all_tests.bash
- bash ./beam_cv/run_all_tests.bash
- bash ./beam_defects/run_all_tests.bash
- bash ./beam_depth/run_all_tests.bash
- bash ./beam_filtering/run_all_tests.bash
- bash ./beam_mapping/run_all_tests.bash
- bash ./beam_matching/run_all_tests.bash
- bash ./beam_utils/run_all_tests.bash