mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-03 17:24:29 +00:00 
			
		
		
		
	Link neovim package to project root directory. Increase delay to 3 seconds. Reduce the total lines in temporary node scripts.
		
			
				
	
	
		
			37 lines
		
	
	
		
			978 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			978 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 install ninja
 | 
						|
  brew install gettext
 | 
						|
  brew reinstall -s libtool
 | 
						|
  brew install ccache
 | 
						|
  export PATH="/usr/local/opt/ccache/libexec:$PATH"
 | 
						|
fi
 | 
						|
 | 
						|
echo "Install neovim module for Python 3."
 | 
						|
# Allow failure. pyenv pip3 on travis is broken:
 | 
						|
# https://github.com/travis-ci/travis-ci/issues/8363
 | 
						|
CC=cc pip3 -q install --user --upgrade neovim || true
 | 
						|
 | 
						|
if ! [ "${TRAVIS_OS_NAME}" = osx ] ; then
 | 
						|
  # Update PATH for pip.
 | 
						|
  export PATH="$(python2.7 -c 'import site; print(site.getuserbase())')/bin:$PATH"
 | 
						|
  # Use default CC to avoid compilation problems when installing Python modules.
 | 
						|
  echo "Install neovim module for Python 2."
 | 
						|
  CC=cc pip2.7 -q install --user --upgrade neovim
 | 
						|
 | 
						|
  echo "Install neovim RubyGem."
 | 
						|
  gem install --no-document --version ">= 0.2.0" neovim
 | 
						|
fi
 | 
						|
 | 
						|
echo "Install neovim npm package"
 | 
						|
npm install -g neovim
 | 
						|
npm link neovim
 |