diff options
author | bfredl <bjorn.linse@gmail.com> | 2022-06-02 09:46:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-02 09:46:37 +0200 |
commit | 285f6518e6d4e94441742d3eb87187f1d24d122a (patch) | |
tree | c88cfa93949cb54df749c7884551495ebd0b9b85 | |
parent | 57a296d899d170e7f78aec2225bf8ab2b0dc711c (diff) | |
parent | 79bf5074499ae06788762ec49d12af6175b01d15 (diff) | |
download | rneovim-285f6518e6d4e94441742d3eb87187f1d24d122a.tar.gz rneovim-285f6518e6d4e94441742d3eb87187f1d24d122a.tar.bz2 rneovim-285f6518e6d4e94441742d3eb87187f1d24d122a.zip |
Merge pull request #18831 from dundargoc/ci/disable-perl-macos
ci(provider): skip perl provider tests on macos
-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 |