We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b67d28e commit 7a2bbe0Copy full SHA for 7a2bbe0
1 file changed
appveyor.yml
@@ -15,6 +15,8 @@ environment:
15
platform: x86
16
- NODE_VERSION: 4
17
platform: x64
18
+ - NODE_VERSION: 4
19
+ platform: x86
20
- NODE_VERSION: 0.12
21
22
@@ -33,6 +35,11 @@ install:
33
35
34
36
- IF %NODE_VERSION% LSS 1 npm -g install npm
37
- IF %NODE_VERSION% LSS 1 set PATH=%APPDATA%\npm;%PATH%
38
+ # work around an issue with node-gyp v3.3.1 and node 4x
39
+ # package.json has no certificates in it so we're cool
40
+ # https://github.com/nodejs/node-gyp/issues/921
41
+ - IF %NODE_VERSION% == 4 npm config set -g cafile=package.json
42
+ - IF %NODE_VERSION% == 4 npm config set -g strict-ssl=false
43
44
# Check if new tag released and publish binary in this case.
45
- SET PUBLISH_BINARY=%APPVEYOR_REPO_TAG%
0 commit comments