electron/appveyor.yml

29 lines
573 B
YAML
Raw Normal View History

2014-07-02 00:09:54 +05:30
# 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 11:35:08 +08:00
- ps: Install-Product node $env:nodejs_version
2014-07-02 00:09:54 +05:30
- 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 10:58:26 +08:00
- cmd: python script/build.py -c Debug
2014-07-02 00:09:54 +05:30
test_script:
- node --version
- npm --version
2014-08-08 10:58:26 +08:00
- cmd: python script/cpplint.py
- cmd: python script/coffeelint.py
2014-07-02 00:09:54 +05:30
build: off