mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 19:25:11 -07:00
79bf507449
The macOS CI jobs fail to properly install the perl provider, making the entire thing fail.
21 lines
565 B
Bash
Executable File
21 lines
565 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
set -o pipefail
|
|
|
|
# Use default CC to avoid compilation problems when installing Python modules.
|
|
echo "Install neovim module for Python."
|
|
CC=cc python -m pip -q install --user --upgrade pynvim
|
|
|
|
echo "Install neovim RubyGem."
|
|
gem install --no-document --bindir "$HOME/.local/bin" --user-install --pre neovim
|
|
|
|
echo "Install neovim npm package"
|
|
npm install -g neovim
|
|
npm link neovim
|
|
|
|
if [[ $CI_OS_NAME != osx ]]; then
|
|
sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log"
|
|
perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION'
|
|
fi
|