mirror of
https://github.com/neovim/neovim.git
synced 2024-12-29 14:41:06 -07:00
a1adfdc7d5
ci: install nodejs 8 in Appveyor, Travis provider: check node version for debug support Resolve https://github.com/neovim/neovim/pull/7577#issuecomment-350590592 for Unix. provider: test if nodejs in ci supports --inspect-brk nodejs host for neovim requires nodejs 6+ to work properly. nodejs 6.12+ or 7.6+ is required for debug support via `node --inspect-brk`. provider: run cli.js of nodejs host directly npm shims are useless because the user cannot set node to debug mode via --inspect-brk. This is problematic on Windows which use batchfiles and shell scripts to compensate for not supporting shebang. The patch uses `npm root -g` to get the absolute path of the global npm modules. If that fails, then the user did not install neovim npm package globally. Use that absolute path to find `neovim/bin/cli.js`, which is what the npm shim actually runs with node. glob() is for a simple file check in case bin/ is removed because the npm shims are ignored now.
52 lines
1.1 KiB
Bash
Executable File
52 lines
1.1 KiB
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
|
|
|
|
if [[ "${TRAVIS_OS_NAME}" == linux ]]; then
|
|
echo "Install node (LTS)"
|
|
|
|
if [ ! -f ~/.nvm/nvm.sh ]; then
|
|
curl -o ~/.nvm/nvm.sh https://raw.githubusercontent.com/creationix/nvm/master/nvm.sh
|
|
fi
|
|
|
|
source ~/.nvm/nvm.sh
|
|
nvm install --lts
|
|
nvm use --lts
|
|
fi
|