solana/ci/coverage.sh

18 lines
249 B
Bash
Raw Normal View History

2018-05-21 23:02:54 -07:00
#!/bin/bash -e
cd $(dirname $0)/..
source $HOME/.cargo/env
rustup update
export RUST_BACKTRACE=1
cargo build
cargo kcov
if [[ -z "$CODECOV_TOKEN" ]]; then
echo CODECOV_TOKEN undefined
exit 1
fi
bash <(curl -s https://codecov.io/bash)
exit 0