mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
0e10b17164
The macOS CI jobs fail to properly install the perl provider, making the
entire thing fail.
(cherry picked from commit 79bf507449
)
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
|