-
Notifications
You must be signed in to change notification settings - Fork 9
/
.travis.yml
91 lines (90 loc) · 1.76 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
language: cpp
script:
- ./autogen.sh
- ./configure
- make
- if [[ $CXX == "clang++" ]]; then export LD_LIBRARY_PATH='/usr/local/clang/lib:/usr/local/clang-7.0.0/lib'; fi;
- make check
os:
- linux
compiler:
- gcc
- clang
addons:
apt:
update: true
packages:
- autotools-dev
- automake
- autoconf
- m4
- libtool
- libncurses5-dev
- libjpeg8-dev
- libpng-dev
- libnetcdf-dev
- libcurl3-dev
- libfreetype6-dev
- libglfw3-dev
- libeigen3-dev
- fontconfig
- ttf-ubuntu-font-family
- libxml2-dev
- gnuplot-qt
- libyaml-cpp-dev
- libfftw3-dev
- libssh-dev
- cxxtest
- libomp-dev # For clang with openmp
homebrew:
update: true
packages:
- automake
- autoconf
- curl
- cxxtest
- eigen
- fftw
- freetype
- glfw
- gnuplot
- jpeg
- libpng
- libssh
- libtool
- libxml2
- netcdf
- yaml-cpp
jobs:
include:
- os: linux
dist: focal
compiler: clang
- os: linux
dist: focal
compiler: gcc
- os: linux
dist: bionic
compiler: clang
- os: linux
dist: bionic
compiler: gcc
- os: linux
dist: xenial
compiler: clang
- os: linux
dist: xenial
compiler: gcc
# - os: osx
# osx_image: xcode12.2
# compiler: clang
# - os: osx
# osx_image: xcode11.3
# compiler: clang
# - os: osx
# osx_image: xcode10.6
# compiler: clang
# - os: osx
# osx_image: xcode9.4
# compiler: clang
after_failure: "ls test/ && cat test/test-suite.log"