diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-20 22:36:30 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-10-25 07:24:56 -0400 |
commit | c065b0d75f3039030ca7de36397585c66542574b (patch) | |
tree | cd95bbb829631992c0e3d6153c552980d5dde917 | |
parent | 4f4f5ef4fd2f54db5d527768b4b1a94f737b3834 (diff) | |
download | rneovim-c065b0d75f3039030ca7de36397585c66542574b.tar.gz rneovim-c065b0d75f3039030ca7de36397585c66542574b.tar.bz2 rneovim-c065b0d75f3039030ca7de36397585c66542574b.zip |
CI: bump nodejs to v10.x (LTS)
v8.x will be EOL at end of 2019.
nvm on Travis has outdated LTS aliases.
-rw-r--r-- | appveyor.yml | 2 | ||||
-rwxr-xr-x | ci/before_install.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml index bb7bb1c4e9..7e2aef345b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -24,7 +24,7 @@ matrix: fast_finish: true install: [] before_build: -- ps: Install-Product node 8 +- ps: Install-Product node 10 build_script: - powershell ci\build.ps1 after_build: diff --git a/ci/before_install.sh b/ci/before_install.sh index 283605e113..7e2ff12d6d 100755 --- a/ci/before_install.sh +++ b/ci/before_install.sh @@ -47,8 +47,8 @@ if [[ "${TRAVIS_OS_NAME}" == osx ]] || [ ! -f ~/.nvm/nvm.sh ]; then fi source ~/.nvm/nvm.sh -nvm install --lts -nvm use --lts +nvm install 10 +nvm use 10 if [[ -n "$CMAKE_URL" ]]; then echo "Installing custom CMake: $CMAKE_URL" |