diff --git a/appveyor.yml b/appveyor.yml index e6fd390..eb3ce33 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,6 +15,8 @@ environment: platform: x86 - NODE_VERSION: 4 platform: x64 + - NODE_VERSION: 4 + platform: x86 - NODE_VERSION: 0.12 platform: x64 - NODE_VERSION: 0.12 @@ -33,6 +35,11 @@ install: - IF %NODE_VERSION% LSS 1 npm -g install npm - IF %NODE_VERSION% LSS 1 set PATH=%APPDATA%\npm;%PATH% + # work around an issue with node-gyp v3.3.1 and node 4x + # package.json has no certificates in it so we're cool + # https://github.com/nodejs/node-gyp/issues/921 + - IF %NODE_VERSION% == 4 npm config set -g cafile=package.json + - IF %NODE_VERSION% == 4 npm config set -g strict-ssl=false # Check if new tag released and publish binary in this case. - SET PUBLISH_BINARY=%APPVEYOR_REPO_TAG%