-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (33 loc) · 751 Bytes
/
.travis.yml
File metadata and controls
34 lines (33 loc) · 751 Bytes
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
language: cpp
matrix:
include:
- name: Test Ubuntu 16.04 + gcc-7 + codecov
os: linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
dist: xenial
sudo: required
compiler: gcc
env:
- BUILD_TYPE=Debug
script:
- sh Scripts/travis_build_codecov.sh
- name: Ubuntu 18.04 LTS + gcc
os: linux
dist: bionic
sudo: required
compiler: gcc
script:
- sh Scripts/travis_build.sh
- name: Test OS X 10.14 + Xcode 10.2 + clang
os: osx
osx_image: xcode10.2
compiler: clang
script:
- sh Scripts/travis_build.sh
before_install:
- eval "${MATRIX_EVAL}"