forked from awdeorio/csvstream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
116 lines (97 loc) · 2.39 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
# Travis CI Configuration
#
# https://docs.travis-ci.com/
# https://docs.travis-ci.com/user/languages/cpp/
#
# Example with multiple compiler versions, including both GCC and Clang
# https://github.com/facebook/fatal/blob/dev/.travis.yml
#
# OSX Xcode and Clang versions
# https://trac.macports.org/wiki/XcodeVersionInfo
# Test
script:
- make -j4 && make test
# Always test the master branch, even when there's no pull request
branches:
only:
- master
# Test against multiple compiler versions
language: cpp
matrix:
include:
- name: "Ubuntu 14.04 Trusty GCC 4.8"
os: linux
dist: trusty
compiler: gcc
- name: "Ubuntu 14.04 Trusty Clang 3.5"
os: linux
dist: trusty
compiler: clang
- name: "Ubuntu 16.04 Xenial GCC 5.4"
os: linux
dist: xenial
compiler: gcc
- name: "Ubuntu 16.04 Xenial Clang 7"
os: linux
dist: xenial
compiler: clang
- name: "Ubuntu 18.04 Bionic GCC 7"
os: linux
dist: bionic
compiler: gcc
- name: "Ubuntu 18.04 Bionic Clang 7"
os: linux
dist: bionic
compiler: clang
- name: "Linux GCC 6"
os: linux
dist: xenial
compiler: gcc
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-6
env: MATRIX_EVAL="CXX=g++-6"
- name: "Linux GCC 7"
os: linux
dist: xenial
compiler: gcc
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-7
env: MATRIX_EVAL="CXX=g++-7"
- name: "Linux GCC 8"
os: linux
compiler: gcc
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-8
env: MATRIX_EVAL="CXX=g++-8"
- name: "Linux GCC 9"
os: linux
compiler: gcc
addons:
apt:
sources: ubuntu-toolchain-r-test
packages: g++-9
env: MATRIX_EVAL="CXX=g++-9"
- name: "macOS 10.11 Apple LLVM version 8.0.0"
os: osx
osx_image: xcode8
compiler: clang
- name: "macOS 10.12 Apple LLVM version 9.0.0"
os: osx
osx_image: xcode9.2
compiler: clang
- name: "macOS 10.13 Apple LLVM version 10.0.0"
os: osx
osx_image: xcode10.1
compiler: clang
- name: "macOS 10.14 Apple LLVM version 11.0.0"
os: osx
osx_image: xcode11.3
compiler: clang
before_install:
- eval "${MATRIX_EVAL}"