We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd92f72 commit b01527aCopy full SHA for b01527a
.travis.yml
@@ -8,11 +8,14 @@ notifications:
8
irc: false
9
10
env:
11
- - REPORT_EXIT_STATUS=1 NO_INTERACTION=1 TEST_PHP_ARGS='--show-diff' CFLAGS="-Wall"
+ - REPORT_EXIT_STATUS=1 NO_INTERACTION=1 TEST_PHP_ARGS='--show-diff' LDFLAGS="-lgcov" CFLAGS="-Wall -coverage -O0" EXTRA_LDFLAGS="-precious-files-regex .libs/msgpack.gcno"
12
13
#Compile
14
before_script:
15
- ./travis/compile.sh
16
17
# Run PHPs run-tests.php
18
-script: make test
+script:
19
+ - make test
20
+ - gcov --object-directory .libs *.c
21
+ - bash <(curl -s https://codecov.io/bash)
0 commit comments