Skip to content

Commit

Permalink
Add Appveyor config for windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BHSPitMonkey committed May 31, 2016
1 parent d12e802 commit 1145fa1
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
version: 0.4.0

platform:
- x64

cache:
- node_modules
- app\node_modules
- '%APPDATA%\npm-cache'
- '%USERPROFILE%\.electron'

init:
- git config --global core.autocrlf input

install:
- ps: Install-Product node 6 x64
- git reset --hard HEAD
- npm install npm -g
- npm install
- npm prune
- cd app
- npm install
- npm prune
- cd ..

build_script:
- node --version
- npm --version
- cd app
- npm run make-dist
- cd ..
- npm run dist

test: off

0 comments on commit 1145fa1

Please sign in to comment.