From 0a7ea582cbd7b731db8799ed0b093678dfd14578 Mon Sep 17 00:00:00 2001 From: sdong Date: Fri, 7 Aug 2015 14:50:34 -0700 Subject: [PATCH] Add auto-build manifest for appveyor Summary: Check in a simple auto-build manfiest so that developers can issue ad-hoc build for Windows in Appveyor. Test Plan: Run it in test branch test_appveyor and it works well. Reviewers: kradhakrishnan, rven, anthony, IslamAbdelRahman, yhchiang Reviewed By: yhchiang Subscribers: leveldb, dhruba Differential Revision: https://reviews.facebook.net/D43839 --- appveyor.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..f7db301f9 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,10 @@ +version: 1.0.{build} +before_build: +- md %APPVEYOR_BUILD_FOLDER%\build +- cd %APPVEYOR_BUILD_FOLDER%\build +- cmake -G "Visual Studio 12 Win64" .. +- cd .. +build: + project: build\ALL_BUILD.vcxproj + verbosity: minimal +test: off