diff options
author | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-04 19:42:26 -0400 |
---|---|---|
committer | Jan Edmund Lazo <janedmundlazo@hotmail.com> | 2018-06-04 19:42:28 -0400 |
commit | f274b84e1e4676e8a499e4ad70f4501d5f4fe305 (patch) | |
tree | b32ae1beded049052612e5f80f6a083361d91a66 /ci | |
parent | cf92a76285f7bc3823ea45c4ced9085a4fe8e362 (diff) | |
download | rneovim-f274b84e1e4676e8a499e4ad70f4501d5f4fe305.tar.gz rneovim-f274b84e1e4676e8a499e4ad70f4501d5f4fe305.tar.bz2 rneovim-f274b84e1e4676e8a499e4ad70f4501d5f4fe305.zip |
test: give more time for nodejs
Link neovim package to project root directory.
Increase delay to 3 seconds.
Reduce the total lines in temporary node scripts.
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 |