This repository has been archived by the owner on Aug 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 729
/
.travis.yml
82 lines (74 loc) · 1.97 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
language: cpp
sudo: required
dist: trusty
matrix:
include:
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.8']
env:
- NETCDF_CXX4_CXXFLAGS=-Wno-write-strings
- OUR_CXX=g++-4.8
- OUR_CC=gcc-4.8
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-4.9']
env:
- NETCDF_CXX4_CXXFLAGS=-Wno-write-strings
- OUR_CXX=g++-4.9
- OUR_CC=gcc-4.9
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-5']
env:
- NETCDF_CXX4_CXXFLAGS=-Wno-write-strings
- OUR_CXX=g++-5
- OUR_CC=gcc-5
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.7']
packages: ['clang-3.7']
env:
- NETCDF_CXX4_CXXFLAGS=-Wno-c++11-compat-deprecated-writable-strings
- OUR_CXX=clang++-3.7
- OUR_CC=clang-3.7
- os: linux
compiler: clang
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
packages: ['clang-3.8']
env:
- NETCDF_CXX4_CXXFLAGS=-Wno-c++11-compat-deprecated-writable-strings
- OUR_CXX=clang++-3.8
- OUR_CC=clang-3.8
before_install:
- sudo apt-get update -qq
- sudo apt-get install -qq libcppunit-dev libnetcdf-dev
install:
- wget http://www.unidata.ucar.edu/downloads/netcdf/ftp/netcdf-cxx4-4.2.tar.gz
- tar xvf netcdf-cxx4-4.2.tar.gz
- pushd netcdf-cxx4-4.2
- export CC=$OUR_CC
- export CXX=$OUR_CXX
- CXXFLAGS=$NETCDF_CXX4_CXXFLAGS ./configure --prefix=/usr/local
- make
- sudo make install
- popd
script:
- cd tst/unittests
- mkdir build && cd build
- cmake ..
- make
- LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib ./unittests