diff options
author | Alex Genco <alexgenco@gmail.com> | 2020-10-18 09:13:27 -0700 |
---|---|---|
committer | Alex Genco <alexgenco@gmail.com> | 2020-10-21 10:20:21 -0700 |
commit | da3b59fc8e0163c6fd63406c3e6dd803041aa5aa (patch) | |
tree | 4c547ae929fa165c29173cd9034e50c8f6711c86 | |
parent | ed0a70087a15621e7f45567feef1900f348c0916 (diff) | |
download | rneovim-da3b59fc8e0163c6fd63406c3e6dd803041aa5aa.tar.gz rneovim-da3b59fc8e0163c6fd63406c3e6dd803041aa5aa.tar.bz2 rneovim-da3b59fc8e0163c6fd63406c3e6dd803041aa5aa.zip |
Install pre-release neovim gem in CI
The `ruby_eval` RPC message will be available in neovim-ruby
0.9.0.pre.*. That will become 0.9.0 once `rubyeval` is merged to neovim.
The `--version` argument isn't needed, as `gem` should pick the latest
release.
-rw-r--r-- | ci/build.ps1 | 2 | ||||
-rwxr-xr-x | ci/install.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 36570be7ae..08fc76393d 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -116,7 +116,7 @@ if (-not $NoTests) { python3 -c "import pynvim; print(str(pynvim))" ; exitIfFailed $env:PATH = "C:\Ruby24\bin;$env:PATH" - gem.cmd install neovim + gem.cmd install --pre neovim Get-Command -CommandType Application neovim-ruby-host.bat npm.cmd install -g neovim diff --git a/ci/install.sh b/ci/install.sh index a4dfc87a1b..efb37cea4e 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -19,7 +19,7 @@ echo "Install neovim module for Python 2." CC=cc python2 -m pip -q install --user --upgrade pynvim echo "Install neovim RubyGem." -gem install --no-document --version ">= 0.8.0" neovim +gem install --no-document --pre neovim echo "Install neovim npm package" source ~/.nvm/nvm.sh |