mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
e463cb6fa0
Continue uploading to coveralls, for now, so we can compare the services.
10 lines
248 B
Bash
Executable File
10 lines
248 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
if [[ -n "${GCOV}" ]]; then
|
|
coveralls --gcov "$(which "${GCOV}")" --encoding iso-8859-1 || echo 'coveralls upload failed.'
|
|
bash <(curl -s https://codecov.io/bash) || echo 'codecov upload failed.'
|
|
fi
|