-
Notifications
You must be signed in to change notification settings - Fork 4
/
.travis.yml
210 lines (197 loc) · 5.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
language: c
os: linux
dist: trusty
sudo: required
compiler: gcc
cache:
apt: true
pip: true
directories:
- $HOME/.cache/pip
- $HOME/.local
matrix:
include:
- env: CVER=gfortran4
language: c
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-4.9
- texlive-base
- texlive-latex-base
- texlive-latex-extra
- texlive-latex-recommended
- texlive-science
- texlive-fonts-recommended
- texlive-fonts-extra
- dpkg
- tex-common
- latex-xcolor
- unzip
- env: CVER=gfortran5
language: c
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-5
- texlive-base
- texlive-latex-base
- texlive-latex-extra
- texlive-latex-recommended
- texlive-science
- texlive-fonts-recommended
- texlive-fonts-extra
- dpkg
- tex-common
- latex-xcolor
- unzip
- env: CVER=gfortran6
language: c
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-6
- texlive-base
- texlive-latex-base
- texlive-latex-extra
- texlive-latex-recommended
- texlive-science
- texlive-fonts-recommended
- texlive-fonts-extra
- dpkg
- tex-common
- latex-xcolor
- unzip
- env: CVER=gfortran7
language: c
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-7
- texlive-base
- texlive-latex-base
- texlive-latex-extra
- texlive-latex-recommended
- texlive-science
- texlive-fonts-recommended
- texlive-fonts-extra
- dpkg
- tex-common
- latex-xcolor
- unzip
- env: CVER=gfortran8
language: c
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-8
- texlive-base
- texlive-latex-base
- texlive-latex-extra
- texlive-latex-recommended
- texlive-science
- texlive-fonts-recommended
- texlive-fonts-extra
- dpkg
- tex-common
- latex-xcolor
- unzip
- env: CVER=gfortran9
language: c
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-9
- texlive-base
- texlive-latex-base
- texlive-latex-extra
- texlive-latex-recommended
- texlive-science
- texlive-fonts-recommended
- texlive-fonts-extra
- dpkg
- tex-common
- latex-xcolor
- unzip
# allowed failures - uncomment lines below to allow failure
# of specific gfortran compilers
allow_failures:
# - env: CVER=gfortran7
# - env: CVER=gfortran8
- env: CVER=gfortran9
install:
- if [[ ! -d "$HOME/.local/bin" ]]; then
mkdir "$HOME/.local/bin";
fi
- export PATH="$HOME/.local/bin:$PATH"
- if [[ $CVER == "gfortran4" ]]; then
ln -fs /usr/bin/gfortran-4.9 "$HOME/.local/bin/gfortran";
gfortran --version;
ls -l /usr/bin/gfortran-4.9;
fi
- if [[ $CVER == "gfortran5" ]]; then
ln -fs /usr/bin/gfortran-5 "$HOME/.local/bin/gfortran";
gfortran --version;
ls -l /usr/bin/gfortran-5;
fi
- if [[ $CVER == "gfortran6" ]]; then
ln -fs /usr/bin/gfortran-6 "$HOME/.local/bin/gfortran";
gfortran --version;
ls -l /usr/bin/gfortran-6;
fi
- if [[ $CVER == "gfortran7" ]]; then
ln -fs /usr/bin/gfortran-7 "$HOME/.local/bin/gfortran";
gfortran --version;
ls -l /usr/bin/gfortran-7;
fi
- if [[ $CVER == "gfortran8" ]]; then
ln -fs /usr/bin/gfortran-8 "$HOME/.local/bin/gfortran";
gfortran --version;
ls -l /usr/bin/gfortran-8;
fi
- if [[ $CVER == "gfortran9" ]]; then
ln -fs /usr/bin/gfortran-9 "$HOME/.local/bin/gfortran";
gfortran --version;
ls -l /usr/bin/gfortran-9;
fi
# install anaconda
- if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- hash -r
- conda config --set always_yes yes --set changeps1 no
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda install nose
- python --version
- pip install numpy
- pip install https://github.com/modflowpy/flopy/zipball/develop
- pip install https://github.com/modflowpy/pymake/zipball/master
- pip install nose-timer
script:
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
- echo "TRAVIS_BRANCH=$TRAVIS_BRANCH, PR=$PR, BRANCH=$BRANCH"
- pwd
- ls ../
- gfortran --version
- which python
- python --version
- python -c "import numpy as np; print('numpy version {}'.format(np.__version__))"
- python -c "import flopy; flopypth = flopy.__path__[0]; print('flopy is installed in {}'.format(flopypth))"
- nosetests --version
- nosetests -v --with-id --with-timer -w ./autotest