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 85668ac commit fe72ef7Copy full SHA for fe72ef7
.travis.yml
@@ -12,11 +12,14 @@ notifications:
12
irc: false
13
14
env:
15
- - 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"
16
17
#Compile
18
before_script:
19
- ./travis/compile.sh
20
21
# Run PHPs run-tests.php
22
-script: make test
+script:
23
+ - make test
24
+ - gcov --object-directory .libs *.c
25
+ - bash <(curl -s https://codecov.io/bash)
0 commit comments