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
1 changed files with 4 additions and 2 deletions

View File

@ -14,5 +14,7 @@ echo "Install neovim npm package"
npm install -g neovim
npm link neovim
sudo cpanm -n Neovim::Ext || cat "$HOME/.cpanm/build.log"
perl -W -e 'use Neovim::Ext; print $Neovim::Ext::VERSION'
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