From 9821a9595d4e2c1c9ed79db1df1f3166ba68924f Mon Sep 17 00:00:00 2001 From: openbuilds-engineer Date: Wed, 11 Jul 2018 15:52:10 +0200 Subject: [PATCH] appveyor --- .travis.yml | 3 +-- appveyor.yml | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 appveyor.yml diff --git a/.travis.yml b/.travis.yml index 7c9493b..d4882e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,10 @@ matrix: - os: osx osx_image: xcode9.3 language: node_js - node_js: "9" + node_js: "7" env: - ELECTRON_CACHE=$HOME/.cache/electron - ELECTRON_BUILDER_CACHE=$HOME/.cache/electron-builder - - os: linux services: docker language: generic diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..d4aecb2 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,20 @@ +image: Visual Studio 2017 + +platform: + - x64 + +cache: + - node_modules + - '%USERPROFILE%\.electron' + +init: + - git config --global core.autocrlf input + +install: + - ps: Install-Product node 7 x64 + - npm install + +build_script: + - npm run ship + +test: off