-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
62 lines (52 loc) · 1.96 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
branches:
except:
sudo: false
language: cpp
compiler:
- gcc
install:
- export CXX="g++-4.9" CC="gcc-4.9" FC="gfortran-4.9"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- ccache
- gfortran #for silo
- libhdf5-serial-dev #for silo
- liblapack-dev
- libblas-dev
- libopenmpi-dev
- openmpi-bin
- gcc-4.9
- g++-4.9
- gfortran-4.9
env:
matrix:
- COEVP_MPI=no SILO=no FLANN=no REDIS=no TWEMPROXY=no LOGGER=no SILODIFF=/bin/true
- COEVP_MPI=no SILO=no FLANN=no REDIS=no TWEMPROXY=yes LOGGER=no SILODIFF=/bin/true
- COEVP_MPI=no SILO=yes FLANN=no REDIS=no TWEMPROXY=no LOGGER=no
- COEVP_MPI=no SILO=yes FLANN=no REDIS=no TWEMPROXY=yes LOGGER=no
- COEVP_MPI=no SILO=yes FLANN=no REDIS=yes TWEMPROXY=no LOGGER=yes
- COEVP_MPI=no SILO=yes FLANN=no REDIS=yes TWEMPROXY=yes LOGGER=no
- COEVP_MPI=no SILO=yes FLANN=yes REDIS=no TWEMPROXY=no LOGGER=yes
- COEVP_MPI=no SILO=yes FLANN=yes REDIS=no TWEMPROXY=yes LOGGER=no
- COEVP_MPI=no SILO=yes FLANN=yes REDIS=yes TWEMPROXY=no LOGGER=yes
- COEVP_MPI=no SILO=yes FLANN=yes REDIS=yes TEMPROXY=yes LOGGER=no
- COEVP_MPI=no SILO=yes FLANN=yes REDIS=yes TEMPROXY=yes LOGGER=no USE_SSL=no
- COEVP_MPI=yes SILO=yes FLANN=yes REDIS=yes TWEMPROXY=no LOGGER=no NP=1
- COEVP_MPI=yes SILO=yes FLANN=yes REDIS=yes LOGGER=no NP=4
before_script:
- export PATH="/usr/lib/ccache:$PATH"
- export OMPI_CC="gcc-4.9"
- export OMPI_CXX="g++-4.9"
script:
- make -j2 COEVP_MPI=${COEVP_MPI} REDIS=${REDIS} FLANN=${FLANN} SILO=${SILO} LOGGER=${LOGGER} USE_SSL=${USE_SSL} FC="${FC}" &&
make get_reference &&
make test COEVP_MPI=${COEVP_MPI} REDIS=${REDIS} FLANN=${FLANN} SILO=${SILO} MPIRUN="${NP:+mpirun -np ${NP}}" ${SILODIFF:+SILODIFF=${SILODIFF} LULESH_OPTS=}
cache:
directories:
- $HOME/.ccache
notifications:
email: