13 lines
303 B
Bash
13 lines
303 B
Bash
|
# 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
|