Commit 1612ce9c by Dane Springmeyer

also report dll deps of node.exe

parent 77412577
......@@ -50,7 +50,7 @@ install:
#- if "%msvs_toolset%" == "14" powershell Start-FileDownload "https://mapbox.s3.amazonaws.com/node-cpp11/vcredist_$env:Platform.exe"
#- if "%msvs_toolset%" == "14" .\vcredist_%platform%.exe /q /norestart
- node -v
- node -e "console.log(process.argv)"
- node -e "console.log(process.argv,process.execPath)"
- npm -v
# upgrade node-gyp to support --msvs_version=2013
- npm install node-gyp
......@@ -63,8 +63,12 @@ install:
- node_modules\.bin\node-pre-gyp reveal module --silent > module.txt
- SET /p MODULE=<module.txt
- del module.txt
- node -e "console.log(process.execPath)" > node_path.txt
- SET /p NODE_EXE_PATH=<node_path.txt
- del node_path.txt
# should display MSVCP140.dll if build with visual studio 2014 and /MD
- dumpbin /DEPENDENTS %MODULE%
- dumpbin /DEPENDENTS "%NODE_EXE_PATH%"
- dumpbin /DEPENDENTS "%MODULE%"
- npm test
- node-pre-gyp package %TOOLSET_ARGS%
# make commit message env var shorter
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment