1
mirror of https://github.com/neovim/neovim.git synced 2025-01-02 17:33:28 -07:00

ci(provider): skip installing perl provider on macOS

The macOS CI jobs fail to properly install the perl provider, making the
entire thing fail.
This commit is contained in:
Dundar Goc 2022-06-01 21:53:31 +02:00
parent 209824ce2c
commit 79bf507449

View File

@ -14,5 +14,7 @@ echo "Install neovim npm package"
npm install -g neovim npm install -g neovim
npm link neovim npm link neovim
sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log" if [[ $CI_OS_NAME != osx ]]; then
perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION' sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log"
perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION'
fi