-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (33 loc) · 712 Bytes
/
.travis.yml
File metadata and controls
38 lines (33 loc) · 712 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
os: osx
language: bash
sudo: required
env:
global:
- CODECOV_TOKEN=e5893812-4dc1-4d6e-9613-1e21eb02e073
before_install:
- brew update
- brew install jq
- brew install shunit2
script:
- make test
addons:
apt:
packages:
- libcurl4-openssl-dev
- libelf-dev
- libdw-dev
- cmake
after_success: |
wget https://github.com/SimonKagstrom/kcov/archive/master.tar.gz &&
tar xzf master.tar.gz &&
cd kcov-master &&
mkdir build &&
cd build &&
cmake .. &&
make &&
sudo make install &&
cd ../.. &&
rm -rf kcov-master &&
mkdir -p coverage &&
find test -name *_test.sh -exec kcov --exclude-path=/usr coverage {} \;
bash <(curl -s https://codecov.io/bash)