File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ environment:
15
15
platform : x86
16
16
- NODE_VERSION : 4
17
17
platform : x64
18
+ - NODE_VERSION : 4
19
+ platform : x86
18
20
- NODE_VERSION : 0.12
19
21
platform : x64
20
22
- NODE_VERSION : 0.12
@@ -33,6 +35,11 @@ install:
33
35
34
36
- IF %NODE_VERSION% LSS 1 npm -g install npm
35
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
36
43
37
44
# Check if new tag released and publish binary in this case.
38
45
- SET PUBLISH_BINARY=%APPVEYOR_REPO_TAG%
You can’t perform that action at this time.
0 commit comments