forked from NCAR/travis_test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
85 lines (76 loc) · 2.15 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
#======================================================================
# Project settings
#======================================================================
# Only build master.
branches:
only:
- master
language: fortran
#======================================================================
# Environment
#======================================================================
# Code is Fortran.
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- gfortran-6
- g++-6
- lcov
#======================================================================
# Build Matrix
#======================================================================
matrix:
include:
- os: linux
compiler: gcc
sudo: false
dist: trusty
- os: osx
compiler: gcc
osx_image: xcode9.4
#======================================================================
# Building
#======================================================================
before_install:
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]] ; then
brew install gcc@7 || true;
brew link --overwrite gcc@7;
fi
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]] ; then
pip install --user cpp-coveralls
fi
before_script:
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]] ; then
export CC="clang" FC="gfortran-7" CXX="clang++" ;
fi
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]] ; then
export CC="gcc-6" FC="gfortran-6" CXX="g++-6" ;
fi
# - export CC="gcc-6" FC="gfortran-6" CXX="g++-6" ;
script:
- make
- |
if [[ "$TRAVIS_OS_NAME" == "linux" ]] ; then
export LD_LIBRARY_PATH=${PWD}/schemes/check/src/check-build
make test
fi
- |
if [[ "$TRAVIS_OS_NAME" == "osx" ]] ; then
export DYLD_LIBRARY_PATH=${PWD}/schemes/check/src/check-build
make test
fi
#======================================================================
# Notifications
#======================================================================
notifications:
email:
recipients: [email protected]
on_success: always
on_failure: always