-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
109 lines (101 loc) · 2.68 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
103
104
105
106
107
108
109
matrix:
include:
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- gfortran-4.9
env:
- MATRIX_EVAL="export CC=gcc-4.9 && export CXX=g++-4.9 && export FC=gfortran-4.9"
python: "2.7"
# Currently python 3.2 is not supported
# - os: linux
# addons:
# apt:
# sources:
# - ubuntu-toolchain-r-test
# packages:
# - g++-4.9
# - gfortran-4.9
# env:
# - MATRIX_EVAL="export CC=gcc-4.9 && export CXX=g++-4.9 && export FC=gfortran-4.9"
# python: "3.2"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
- gfortran-5
env:
- MATRIX_EVAL="export CC=gcc-5 && export CXX=g++-5 && export FC=gfortran-5"
python: "2.7"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
- gfortran-6
env:
- MATRIX_EVAL="export CC=gcc-6 && export CXX=g++-6 && export FC=gfortran-6"
python: "2.7"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.6
packages:
- clang-3.6
env:
- MATRIX_EVAL="export CC=clang-3.6 && export CXX=clang++-3.6"
python: "2.7"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.7
packages:
- clang-3.7
env:
- MATRIX_EVAL="export CC=clang-3.7 && export CXX=clang++-3.7"
python: "2.7"
- os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.8
packages:
- clang-3.8
env:
- MATRIX_EVAL="export CC=clang-3.8 && export CXX=clang++-3.8"
python: "2.7"
- os: osx
osx_image: xcode8
language: c++
compiler: clang
language: python
before_install:
- eval "${MATRIX_EVAL}"
- echo CC=$CC
- echo CXX=$CXX
- echo FC=$FC
- echo pwd=`pwd`
install:
- export PATH=${TRAVIS_BUILD_DIR}/dist_install/bin:$PATH
- export PYTHONPATH=${TRAVIS_BUILD_DIR}/dist_install/share/hhgrid:$PYTHONPATH
- pip install --upgrade pip setuptools wheel
- pip install --only-binary=numpy,scipy numpy scipy
- autoreconf -i
- if [ -z $FC ]; then ./configure --disable-fortran --prefix=${TRAVIS_BUILD_DIR}/dist_install; else ./configure --prefix=${TRAVIS_BUILD_DIR}/dist_install; fi
- make
script:
- make check