CI: bump nodejs to v10.x (LTS)

v8.x will be EOL at end of 2019.
nvm on Travis has outdated LTS aliases.
This commit is contained in:
Jan Edmund Lazo 2019-10-20 22:36:30 -04:00
parent 4f4f5ef4fd
commit c065b0d75f
No known key found for this signature in database
GPG Key ID: 64915E6E9F735B15
2 changed files with 3 additions and 3 deletions

View File

@ -24,7 +24,7 @@ matrix:
fast_finish: true fast_finish: true
install: [] install: []
before_build: before_build:
- ps: Install-Product node 8 - ps: Install-Product node 10
build_script: build_script:
- powershell ci\build.ps1 - powershell ci\build.ps1
after_build: after_build:

View File

@ -47,8 +47,8 @@ if [[ "${TRAVIS_OS_NAME}" == osx ]] || [ ! -f ~/.nvm/nvm.sh ]; then
fi fi
source ~/.nvm/nvm.sh source ~/.nvm/nvm.sh
nvm install --lts nvm install 10
nvm use --lts nvm use 10
if [[ -n "$CMAKE_URL" ]]; then if [[ -n "$CMAKE_URL" ]]; then
echo "Installing custom CMake: $CMAKE_URL" echo "Installing custom CMake: $CMAKE_URL"