diff options
author | Dundar Goc <gocdundar@gmail.com> | 2022-06-01 21:53:31 +0200 |
---|---|---|
committer | Dundar Goc <gocdundar@gmail.com> | 2022-06-01 23:05:17 +0200 |
commit | 79bf5074499ae06788762ec49d12af6175b01d15 (patch) | |
tree | 6190f09d480e8c83c0e1c1bf03caafadfd5d8831 | |
parent | 209824ce2c6d37332079e6e213d4b8e257d7d53b (diff) | |
download | rneovim-79bf5074499ae06788762ec49d12af6175b01d15.tar.gz rneovim-79bf5074499ae06788762ec49d12af6175b01d15.tar.bz2 rneovim-79bf5074499ae06788762ec49d12af6175b01d15.zip |
ci(provider): skip installing perl provider on macOS
The macOS CI jobs fail to properly install the perl provider, making the
entire thing fail.
-rwxr-xr-x | ci/install.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ci/install.sh b/ci/install.sh index 894e090de2..c8eef4903a 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -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 |