summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDiego Barrios Romero <eldruin@gmail.com>2018-11-14 19:27:31 +0100
committerDiego Barrios Romero <eldruin@gmail.com>2018-11-14 19:27:31 +0100
commit04e9635fe9669fe3e7aa1804439f5b46887b7585 (patch)
tree923b51b7f73bf22174aa9df0d8dc19fddbbf3ac1
parent180ce246965d480afc5f9858f74368fddccbab8b (diff)
downloadads1x1x-async-04e9635fe9669fe3e7aa1804439f5b46887b7585.tar.gz
ads1x1x-async-04e9635fe9669fe3e7aa1804439f5b46887b7585.tar.xz
ads1x1x-async-04e9635fe9669fe3e7aa1804439f5b46887b7585.zip
Log all gc files
-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;