forked from m-a-d-n-e-s-s/madness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
102 lines (102 loc) · 2.77 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
language: cpp
cache: ccache
os:
- osx
- linux
compiler:
- clang
- gcc
env:
#- GCC_VERSION=4.7 RUN_TEST=buildonly
#- GCC_VERSION=4.8 RUN_TEST=buildonly
#- GCC_VERSION=4.9 RUN_TEST=buildonly
- GCC_VERSION=5 RUN_TEST=buildonly
#- GCC_VERSION=4.7 RUN_TEST=world
#- GCC_VERSION=4.8 RUN_TEST=world
#- GCC_VERSION=4.9 RUN_TEST=world
- GCC_VERSION=5 RUN_TEST=world
#- GCC_VERSION=4.7 RUN_TEST=tensor
#- GCC_VERSION=4.8 RUN_TEST=tensor
#- GCC_VERSION=4.9 RUN_TEST=tensor
- GCC_VERSION=5 RUN_TEST=tensor
#- GCC_VERSION=4.7 RUN_TEST=mra
#- GCC_VERSION=4.8 RUN_TEST=mra
#- GCC_VERSION=4.9 RUN_TEST=mra
- GCC_VERSION=5 RUN_TEST=mra
matrix:
exclude:
- compiler: clang
env: GCC_VERSION=4.7 RUN_TEST=buildonly
- compiler: clang
env: GCC_VERSION=4.8 RUN_TEST=buildonly
- compiler: clang
env: GCC_VERSION=4.9 RUN_TEST=buildonly
- compiler: clang
env: GCC_VERSION=4.7 RUN_TEST=world
- compiler: clang
env: GCC_VERSION=4.8 RUN_TEST=world
- compiler: clang
env: GCC_VERSION=4.9 RUN_TEST=world
- compiler: clang
env: GCC_VERSION=4.7 RUN_TEST=tensor
- compiler: clang
env: GCC_VERSION=4.8 RUN_TEST=tensor
- compiler: clang
env: GCC_VERSION=4.9 RUN_TEST=tensor
- compiler: clang
env: GCC_VERSION=4.7 RUN_TEST=mra
- compiler: clang
env: GCC_VERSION=4.8 RUN_TEST=mra
- compiler: clang
env: GCC_VERSION=4.9 RUN_TEST=mra
- os: osx
compiler: gcc
#notifications:
# email:
# recipients:
# on_success: change
# on_failure: always
sudo: false
addons:
apt:
sources:
- george-edison55-precise-backports
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
#- gcc-4.7
#- g++-4.7
#- gfortran-4.7
#- gcc-4.8
#- g++-4.8
#- gfortran-4.8
#- gcc-4.9
#- g++-4.9
#- gfortran-4.9
- gcc-5
- g++-5
- gfortran-5
- clang-3.8
# These do not lead to the desired result of libc++ >:-(
#- libc++-dev
#- libc++1
# BLAS/LAPACK libraries - use OpenBLAS or ATLAS if faster...
- libblas-dev
- liblapack-dev
#- libopenblas-base # Do NOT use this library! it causes illegal instruction errors.
#- libatlas3-base # "E: Unable to locate package libatlas3-base"
# END
- libgoogle-perftools-dev
#- mpich2 # disallowed - build from source
- libtbb-dev
#- cmake
# if necessary to debug the install step, move all lines into
# script step and add appropriate debugging analysis to the
# after_failure step e.g. find . -name config.log -exec cat {} ";"
install:
- ./ci/dep-$TRAVIS_OS_NAME.sh
script:
- ./ci/build-$TRAVIS_OS_NAME.sh
after_failure:
- cat ./build/config.log