blob: f48f070f13d68f1a3b732a8d00e44a600e286be4 (
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: xenial
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
|