-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use appveyor instead of travis for windows builds
- Loading branch information
1 parent
35b6be3
commit 4bcc4e1
Showing
3 changed files
with
35 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
version: 0.4.{build} | ||
|
||
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 electron-builder@next # force install next version to test electron-builder | ||
- npm install | ||
- npm prune | ||
|
||
build_script: | ||
- node --version | ||
- npm --version | ||
- webpack | ||
- npm run distw | ||
|
||
test: off |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters