forked from openMVG/openMVG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
82 lines (74 loc) · 1.74 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
75
76
77
78
79
80
81
#
# http://travis-ci.org configuration file for openMVG
#
dist: trusty
sudo: false
language: cpp
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- ubuntu-sdk-team/ppa
packages:
- g++-4.8
- qtbase5-dev
- libqt5svg5-dev
- libqt5opengl5-dev
env: COMPILER=g++-4.8
- os: linux
compiler: clang
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
env: COMPILER=clang++-3.7
- os: osx
osx_image: xcode8.2
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- cmake
- libpng-dev
- libjpeg8-dev
- libtiff4-dev
- libxxf86vm1
- libxxf86vm-dev
- x11proto-xf86vidmode-dev
- libxrandr-dev
- qtbase5-dev
env:
global:
- OPENMVG_SOURCE=${TRAVIS_BUILD_DIR}/src
- OPENMVG_BUILD=${TRAVIS_BUILD_DIR}/build
before_script:
# Display cmake version
- cmake --version
# Create build folder
- rm -rf $OPENMVG_BUILD
- mkdir $OPENMVG_BUILD
- cd $OPENMVG_BUILD
# Classic release build
# - Compile only OpenMVG core libraries for unit testing
# - SCHUR_SPECIALIZATIONS set to OFF to speed up build time (ceres)
- >
cmake \
-DCMAKE_CXX_COMPILER=$COMPILER \
-DCMAKE_BUILD_TYPE=release \
-DOpenMVG_BUILD_TESTS=ON \
-DOpenMVG_BUILD_EXAMPLES=ON \
-DOpenMVG_BUILD_SOFTWARES=ON \
-DSCHUR_SPECIALIZATIONS=OFF \
. $OPENMVG_SOURCE
script:
# limit GCC builds to a reduced number of thread for the virtual machine
- time make all -j 2
- make test