-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
47 lines (43 loc) · 971 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
38
39
40
41
42
43
44
45
46
47
dist: trusty
language: cpp
script: cmake
sudo: required
notifications:
email:
recipients:
on_success: always
on_failure: always
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- g++-4.9
- g++-4.9-multilib
- g++-multilib
- libhdf5-dev
- libhdf5-serial-dev
- libboost-thread1.55-dev
- libboost-system1.55-dev
- libboost-date-time1.55-dev
- libboost-chrono1.55-dev
- libboost-python1.55-dev
- qtbase5-dev
- libqt5xmlpatterns5-dev
- libqt5opengl5-dev
- uuid-dev
matrix:
fast_finish: true
include:
- os: linux
compiler: gcc
script:
- mkdir build
- cd build
- ../linux_install_dependencies.sh
- cmake -DCMAKE_CXX_COMPILER=g++-4.9 -DCMAKE_C_COMPILER=gcc-4.9 ../src/
- make -j2