-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
112 lines (91 loc) · 2.63 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
# Project Configuration
# C++ Project
language: cpp
dist: trusty
sudo: required
# Build Job Matrix
jobs:
include:
# Valgrind
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-7', 'cmake', 'ninja-build', 'valgrind']
env:
- COMPILER="g++-7"
- CTEST_OPTIONS="-T memcheck"
- VALGRIND="ON"
# Coveralls
- os: linux
compiler: gcc
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-7', 'cmake', 'ninja-build']
before_install:
- sudo -H pip install --upgrade requests[security]
- pip install --user cpp-coveralls
after_success:
- coveralls --root ../../ --build-root ./ --include include --gcov 'gcov-7' --gcov-options '\-lp'
env:
- COMPILER="g++-7"
- COVERALL="ON"
- CMAKE_OPTIONS="-DFASTAD_ENABLE_COVERAGE=ON"
# OSX / Clang
- os: osx
osx_image: xcode10
- os: osx
osx_image: xcode10.1
- os: osx
osx_image: xcode10.2
- os: osx
osx_image: xcode11.2
# Linux/GCC>=5
- os: linux
compiler: gcc
env: COMPILER=g++-7
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-7', 'ninja-build']
- os: linux
compiler: gcc
env: COMPILER=g++-8
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-8', 'ninja-build']
- os: linux
compiler: gcc
env: COMPILER=g++-9
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['g++-9', 'ninja-build']
# Build Script
script:
# MacOS only: install ninja and cmake
- if [[ (-x $(which brew)) ]]; then
brew update;
brew install cmake ninja;
brew upgrade cmake;
fi
# set CXX to correct compiler
- if [[ "${COMPILER}" != "" ]]; then
export CXX=${COMPILER};
fi
# show OS/compiler/cmake version
- uname -a
- ${CXX} --version
- cmake --version
# setup, clean build, and test
- ./setup.sh dev
- ./clean-build.sh release ${CMAKE_OPTIONS}
- cd build/release
- ctest ${CTEST_OPTIONS} -j12
# if testing valgrind
- if [[ "${VALGRIND}" == "ON" ]]; then
cat ./Testing/Temporary/MemoryChecker.*.log;
fi