diff options
-rw-r--r-- | ci/script.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ci/script.sh b/ci/script.sh index fcd37cb..4b363f2 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -28,6 +28,7 @@ main() { zip -0 ccov.zip `find . \( -name "ads1x1x*.gc*" -o -name "tier*.gc*" -name "mux*.gc*" -name "construction*.gc*" -name "linux-*.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; + grcov ./target -t coveralls+ -s . --token `$COVERALLS_TOKEN` --llvm --branch --ignore-not-existing --ignore-dir "/*" fi fi |