From 10e124e4faf31239b1764467f1561f3e6aa11199 Mon Sep 17 00:00:00 2001 From: Daniel Hritzkiv Date: Wed, 29 May 2019 01:58:54 -0400 Subject: [PATCH] Build node 12 on appveyor Node 12 may not be pre-built yet? https://github.com/appveyor/ci/issues/2921 --- appveyor.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 671900d0..cd8aee1e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,9 +1,13 @@ platform: - x64 +environment: + matrix: + - nodejs_version: "12" + install: - cmd: git submodule update --init - - ps: Install-Product node 12 $env:PLATFORM + - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:PLATFORM - npm config set msvs_version 2015 --global - npm config set target_arch %PLATFORM% --global - npm install -g node-gyp