YouCompleteMe/azure/send_coverage.sh

13 lines
303 B
Bash
Raw Normal View History

2019-04-28 14:25:22 -04:00
# Exit immediately if a command returns a non-zero status.
set -e
# Required to enable Homebrew on Linux.
test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
eval "$(pyenv init -)"
pyenv global ${YCM_PYTHON_VERSION}
codecov --name "${CODECOV_JOB_NAME}"
set +e