Merge pull request #18874 from neovim/backport-18831-to-release-0.7

[Backport release-0.7] ci(provider): skip perl provider tests on macos
This commit is contained in:
zeertzjq
2022-06-06 06:32:07 +08:00
committed by GitHub

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