blob: 2fefb3b158193b0e838b5834bb406a113f0c1d8e (
plain) (
blame)
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
|
sudo: required
dist: trusty
language: cpp
cache: apt
compiler:
- gcc
- clang
env:
- CONFIG=minimal
- CONFIG=full
- CONFIG=full-debug
install:
- tests/travis/install-build-depends
matrix:
exclude:
- os: osx
compiler: gcc
os:
- linux
- osx
script:
- tests/travis/build-and-test
after_success:
- |
if [ "$CONFIG" = "full-debug" ]; then
bash <(curl -s https://codecov.io/bash)
fi
|