diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2018-06-05 14:08:32 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-06-05 14:08:32 +0200 |
| commit | d9d91bbfef883c72e71bbc966274ddd7157d0060 (patch) | |
| tree | a43d5bceabf50ae7c2f4a29027481138e004a19c /ci | |
| parent | ae927a49f7e3db3b1a2ba7e8e07736695594028d (diff) | |
| parent | 6ffcc2b8002d37986b3ee2b9471c460af8d0c669 (diff) | |
| download | rneovim-d9d91bbfef883c72e71bbc966274ddd7157d0060.tar.gz rneovim-d9d91bbfef883c72e71bbc966274ddd7157d0060.tar.bz2 rneovim-d9d91bbfef883c72e71bbc966274ddd7157d0060.zip | |
Merge #8482 'test: give more time for nodejs'
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/build.ps1 | 1 | ||||
| -rwxr-xr-x | ci/install.sh | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 8eb237ccd1..7e686f3464 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -77,6 +77,7 @@ where.exe neovim-ruby-host.bat ; exitIfFailed cmd /c npm.cmd install -g neovim ; exitIfFailed where.exe neovim-node-host.cmd ; exitIfFailed +cmd /c npm link neovim function convertToCmakeArgs($vars) { return $vars.GetEnumerator() | foreach { "-D$($_.Key)=$($_.Value)" } diff --git a/ci/install.sh b/ci/install.sh index 50f3490b63..e95e2f29c1 100755 --- a/ci/install.sh +++ b/ci/install.sh @@ -33,3 +33,4 @@ fi echo "Install neovim npm package" npm install -g neovim +npm link neovim |