electron/appveyor.yml

29 lines
573 B
YAML
Raw Normal View History

2014-07-01 18:39:54 +00:00
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
version: "{build}"
init:
- git config --global core.autocrlf input
environment:
matrix:
- nodejs_version: 0.10
platform:
- x86
install:
2014-08-08 03:35:08 +00:00
- ps: Install-Product node $env:nodejs_version
2014-07-01 18:39:54 +00:00
- cmd: SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
- cmd: SET PATH=C:\python27;%PATH%
- cmd: python script/bootstrap.py
2014-08-08 02:58:26 +00:00
- cmd: python script/build.py -c Debug
2014-07-01 18:39:54 +00:00
test_script:
- node --version
- npm --version
2014-08-08 02:58:26 +00:00
- cmd: python script/cpplint.py
- cmd: python script/coffeelint.py
2014-07-01 18:39:54 +00:00
build: off