summaryrefslogtreecommitdiffstats
path: root/ci/script.sh
diff options
context:
space:
mode:
authorDiego Barrios Romero <eldruin@gmail.com>2018-11-14 20:10:38 +0100
committerDiego Barrios Romero <eldruin@gmail.com>2018-11-14 20:10:38 +0100
commitbdd247fc57025b7ce98d64144f64ed1a6bd78fa2 (patch)
treefe761b4c6e065b1da3ff3d51ec4dd3b5dd4832a9 /ci/script.sh
parent0c842be293a0a7e10ed290aa137619065b8efed7 (diff)
downloadads1x1x-async-bdd247fc57025b7ce98d64144f64ed1a6bd78fa2.tar.gz
ads1x1x-async-bdd247fc57025b7ce98d64144f64ed1a6bd78fa2.tar.xz
ads1x1x-async-bdd247fc57025b7ce98d64144f64ed1a6bd78fa2.zip
Fix or-ing expressions
Diffstat (limited to 'ci/script.sh')
-rw-r--r--ci/script.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/script.sh b/ci/script.sh
index 4b363f2..06690ce 100644
--- a/ci/script.sh
+++ b/ci/script.sh
@@ -25,7 +25,7 @@ main() {
cargo test --target $TARGET $FEATURES
if [ ! -z $COVERAGE ]; then
find . -name "*.gc*" -print
- 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`;
+ zip -0 ccov.zip `find . \( -name "ads1x1x*.gc*" -o -name "tier*.gc*" -o -name "mux*.gc*" -o -name "construction*.gc*" -o -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 "/*"