mirror of
https://github.com/neovim/neovim.git
synced 2024-12-26 14:11:15 -07:00
f51a397010
Workaround for travis issue:
https://github.com/travis-ci/travis-ci/issues/8363
Cannot check `command -v pip3`, because that may point to
`/opt/pyenv/shims/pip3` which is also (sometimes) broken.
ref 6389bde0bc
40 lines
860 B
Bash
Executable File
40 lines
860 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
if [[ "${CI_TARGET}" == lint ]]; then
|
|
exit
|
|
fi
|
|
|
|
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
|
brew update
|
|
fi
|
|
|
|
echo 'python info:'
|
|
(
|
|
2>&1 python --version || true
|
|
2>&1 python2 --version || true
|
|
2>&1 python3 --version || true
|
|
2>&1 pip --version || true
|
|
2>&1 pip2 --version || true
|
|
2>&1 pip3 --version || true
|
|
echo 'pyenv versions:'
|
|
2>&1 pyenv versions || true
|
|
) | sed 's/^/ /'
|
|
|
|
echo "Upgrade Python 2 pip."
|
|
pip2.7 -q install --user --upgrade pip
|
|
|
|
if [[ "${TRAVIS_OS_NAME}" == osx ]]; then
|
|
echo "Install Python 3."
|
|
brew install python3
|
|
echo "Upgrade Python 3 pip."
|
|
pip3 -q install --user --upgrade pip
|
|
else
|
|
echo "Upgrade Python 3 pip."
|
|
# Allow failure. pyenv pip3 on travis is broken:
|
|
# https://github.com/travis-ci/travis-ci/issues/8363
|
|
pip3 -q install --user --upgrade pip || true
|
|
fi
|