File tree 5 files changed +28
-1
lines changed
5 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,11 @@ pipe-child.lsp
29
29
# guiserver
30
30
* .class
31
31
32
+ # coveralls (gcov)
33
+ * .gcov
34
+ * .gcda
35
+ * .gcno
36
+
32
37
# eclipse
33
38
.settings
34
39
Original file line number Diff line number Diff line change @@ -36,7 +36,13 @@ matrix:
36
36
script :
37
37
- make -f makefile_mingw_utf8 CC=${CC} STRIP=${STRIP}
38
38
39
+ before_install :
40
+ - source ./ci/coveralls/before_install_${TRAVIS_OS_NAME}.sh
41
+
39
42
script :
40
- - make CC="$CC"
43
+ - make CC="$CC --coverage "
41
44
- file ./newlisp && ./newlisp -v
42
45
- make testall
46
+
47
+ after_success :
48
+ - coveralls --exclude util
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ newLISP mirror
2
2
==============
3
3
4
4
[ ![ Build Status] ( https://travis-ci.org/kosh04/newlisp.svg?branch=develop )] ( https://travis-ci.org/kosh04/newlisp )
5
+ [ ![ Coverage Status] ( https://coveralls.io/repos/kosh04/newlisp/badge.svg?branch=feature%2Fcoveralls&service=github )] ( https://coveralls.io/github/kosh04/newlisp?branch=feature%2Fcoveralls )
5
6
[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/qg6ijtx867q5fxnl/branch/develop?svg=true )] ( https://ci.appveyor.com/project/kosh04/newlisp/branch/develop )
6
7
[ ![ Gitter] ( https://badges.gitter.im/Join%20Chat.svg )] ( https://gitter.im/kosh04/newlisp )
7
8
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e
3
+
4
+ pip install --user cpp-coveralls
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ set -e
3
+
4
+ # brew update
5
+ # brew install pyenv
6
+ eval " $( pyenv init -) "
7
+ pyenv install 2.7.6
8
+ pyenv global 2.7.6
9
+ pyenv rehash
10
+ pip install cpp-coveralls
11
+ pyenv rehash
You can’t perform that action at this time.
0 commit comments