Commit ced1e9ca by Andrew Nesbitt

Merge pull request #359 from deepak1556/appveyor_setup

Appveyor setup
parents fa25f82b e0723073
project_id: "ojs37kekmpl6mr0k"
version: "{build}"
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 0.10
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- cmd: SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
- cmd: SET PATH=C:\python27;%PATH%
- cmd: git submodule update --init --recursive
- cmd: npm install -g node-gyp
- npm install --msvs_version=2013
test_script:
- node --version
- npm --version
- cmd: npm test
build: off
...@@ -51,10 +51,17 @@ ...@@ -51,10 +51,17 @@
'msvs_settings': { 'msvs_settings': {
'VCCLCompilerTool': { 'VCCLCompilerTool': {
'AdditionalOptions': [ 'AdditionalOptions': [
'/GR' '/GR',
'/EHsc'
] ]
} }
} },
'msvs_disabled_warnings': [
# conversion from `double` to `size_t`, possible loss of data
4244,
# decorated name length exceeded
4503
]
}] }]
] ]
} }
......
...@@ -157,4 +157,4 @@ describe('stats', function() { ...@@ -157,4 +157,4 @@ describe('stats', function() {
}); });
}); });
\ No newline at end of file
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