From 6087a1223f11509ad199b3c2d8df0cb3e708cdb2 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Thu, 12 Jan 2017 11:25:50 -0800 Subject: [PATCH] Add initial AppVeyor config --- brightray/appveyor.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 brightray/appveyor.yml diff --git a/brightray/appveyor.yml b/brightray/appveyor.yml new file mode 100644 index 000000000000..46a91007e6e3 --- /dev/null +++ b/brightray/appveyor.yml @@ -0,0 +1,24 @@ +version: "{build}" + +clone_depth: 10 + +os: Visual Studio 2015 + +init: + - git config --global core.autocrlf input + +platform: + - x64 + +install: + - cmd: SET PATH=C:\Program Files (x86)\MSBuild\14.0\bin\;%PATH% + - cmd: SET PATH=C:\python27;%PATH% + - cmd: bash script/cibuild + +branches: + only: + - master + +# disable build and test phases +build: off +test: off