-
Notifications
You must be signed in to change notification settings - Fork 24
/
.travis.yml
48 lines (41 loc) · 894 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
48
language: generic
notifications:
email: false
slack:
rooms:
- padeops:BL9Z4HoxfW6KHcHSILMFYD6M#travis
sudo: required
dist: trusty
os:
- linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gfortran-6
- build-essential
- libblas-dev
- liblapack-dev
env:
- MPI_IMPL=mpich
before_install:
- ls /usr/lib
- nm /usr/lib/liblapack.a | grep dgesvd
- echo $LD_LIBRARY_PATH
- sh ./travis/install-mpi.sh $MPI_IMPL
- export PATH="$HOME/MPICH/bin:$HOME/OpenMPI/bin:$PATH"
- sh ./travis/install-fftw.sh
- sh ./travis/install-2decomp.sh
- sh ./travis/install-Lib_VTK_IO.sh
- sh ./travis/install-hdf5.sh
install:
- |
if [[ ! -d "build" ]]; then
mkdir build
fi
- source setup/SetupEnv_Travis_GNU.sh
- $CC -show
- $CXX -show
- $FC -show
- cd build; cmake ..; make VERBOSE=1