forked from AchillesGen/Achilles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
144 lines (124 loc) · 3.69 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# Adapted from spdlog (https://github.com/gabime/spdlog)
sudo: required
language: cpp
dist: focal
# gcc 5
addons: &gcc5
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- libhdf5-serial-dev
- gfortran-5
- g++-5
# gcc 6
addons: &gcc6
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- libhdf5-serial-dev
- gfortran-6
- g++-6
# gcc 7
addons: &gcc7
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- libhdf5-serial-dev
- gfortran-7
- g++-7
# gcc 8
addons: &gcc8
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- libhdf5-serial-dev
- gfortran-8
- g++-8
# gcc 9
addons: &gcc9
apt:
sources:
- sourceline: 'ppa:ubuntu-toolchain-r/test'
packages:
- libhdf5-serial-dev
- gfortran-9
- g++-9
# clang
addons: &clang
apt:
packages:
- libhdf5-serial-dev
- gfortran
matrix:
include:
# Currently gcc5 and gcc6 do not work with travis and focal
# - name: "gcc5"
# os: linux
# env: GCC_VERSION=5
# addons: *gcc5
#
# - name: "gcc6"
# os: linux
# env: GCC_VERSION=6
# addons: *gcc6
- name: "gcc7"
os: linux
env: GCC_VERSION=7
addons: *gcc7
- name: "gcc8"
os: linux
env: GCC_VERSION=8
addons: *gcc8
- name: "gcc9"
os: linux
env: GCC_VERSION=9
addons: *gcc9
- name: "clang10"
os: linux
env: CLANG_VERSION=10
compiler: clang
addons: *clang
- name: "macOS xcode10.2"
os: osx
osx_image: xcode10.2
cache:
directories:
- $HOME/.ccache
- $HOME/.local/bin
- $HOME/.local/lib
- $HOME/.local/include
before_install:
############################################################################
# All the dependencies are installed in ${HOME}/deps/
############################################################################
- DEPS_DIR="${HOME}/deps"
- mkdir -p ${DEPS_DIR} && cd ${DEPS_DIR}
- if [ -n "$GCC_VERSION" ]; then export CXX="g++-${GCC_VERSION}" CC="gcc-${GCC_VERSION}" FC="gfortran-${GCC_VERSION}"; fi
# - if [ -n "$CLANG_VERSION" ]; then export CXX="clang++-${CLANG_VERSION}" CC="clang-${CLANG_VERSION}"; fi
############################################################################
# Install a recent CMake
############################################################################
- |
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
CMAKE_URL="https://cmake.org/files/v3.16/cmake-3.16.0-Linux-x86_64.tar.gz"
mkdir cmake && travis_retry wget --no-check-certificate --quiet -O - ${CMAKE_URL} | tar --strip-components=1 -xz -C cmake
export PATH=${DEPS_DIR}/cmake/bin:${PATH}
else
brew install cmake || brew upgrade cmake
fi
- cmake --version
#############################################################################
# Return to root directory of the project
#############################################################################
- cd -
- pwd
install:
- mkdir build && cd build && cmake .. -DENABLE_TESTING=ON
- make -j8
script:
- ./test/nuchic-testsuite
- ./test/nuchic-fortran-testsuite