summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ci/script.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/script.sh b/ci/script.sh
index eefc1b3..5211507 100644
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -24,6 +24,7 @@ main() {
if [ -z $DISABLE_TESTS ] && [ $TRAVIS_RUST_VERSION = nightly ] && [[ $TARGET =~ .*linux.* ]]; then
cargo test --target $TARGET $FEATURES
if [ ! -z $COVERAGE ]; then
+ find . -name "*.gc*" -print
zip -0 ccov.zip `find . \( -name "ads1x1x*.gc*" -o -name "llvmgcov.gc*" \) -print`;
grcov ccov.zip -s . -t lcov --llvm --branch --ignore-not-existing --ignore-dir "/*" > lcov.info;
bash <(curl -s https://codecov.io/bash) -f lcov.info;