forked from jarulraj/sqlcheck
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
40 lines (32 loc) · 740 Bytes
/
.travis.yml
File metadata and controls
40 lines (32 loc) · 740 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
35
36
37
38
39
sudo: false
language: generic
matrix:
include:
- os: linux
compiler: gcc
env: COMPILER=g++-4.9 CXX=g++-4.9 GCOV=gcov-4.9
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- python-pip
before_install:
- pip install --user urllib3[secure]
- pip install --user cpp-coveralls
script:
- ./bootstrap
- cd build
- cmake --version
- cmake -DCMAKE_BUILD_TYPE=COVERAGE ..
- make VERBOSE=1
- make check
- g++-4.9 --version
- gcov-4.9 --version
- which gcov-4.9
- which gcov
after_success:
- coveralls --gcov /usr/bin/gcov-4.9 --root .. -E ".*external.*" -E ".*CMakeFiles.*" -E ".*test/.*.cpp.*"
notifications:
email: false