-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (43 loc) · 1.05 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
language: cpp
git:
quiet: true
submodules: true
depth: 3
matrix:
include:
- os: linux
dist: bionic
sudo: true
compiler: gcc
env:
- MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
addons:
apt:
packages:
- autoconf
- libtool
- flex
- bison
- libeigen3-dev
- libyaml-dev
- libboost-all-dev
- libflann-dev
- liblapack-dev
- libblas-dev
- libomp-dev
- libopencv-dev
- libopencv-contrib-dev
- libpcl-dev
- python-dev
before_install:
- eval "${MATRIX_EVAL}"
script:
############################################################################
# Build main and tests
############################################################################
- mkdir -p build
- cd build
- cmake ${CMAKE_OPTIONS} -DCMAKE_CXX_FLAGS=${CXX_FLAGS} -DCMAKE_BUILD_TYPE=Coverage ..
- make -j$(nproc)
notifications:
email: false