From d9eec869f6195870d02bc28f3237a52b19c18ca1 Mon Sep 17 00:00:00 2001 From: "dreamer.dead" Date: Mon, 1 Aug 2016 19:56:58 +0300 Subject: [PATCH] Add initial AppVeyor config. --- appveyor.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..758eb5c --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,31 @@ +# Configuration for continuous integration service at appveyor.com + +shallow_clone: true + +# Operating system (build VM template) +os: Visual Studio 2015 + +# scripts that are called at very beginning, before repo cloning +init: + +# clone directory +clone_folder: c:\projects\gflags + +matrix: + fast_finish: true + +install: + # show all available env vars + - set + - echo cmake on AppVeyor + - cmake -version + - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" + +build_script: + - cd c:\projects\gflags + - mkdir out && cd out + - cmake -G "Visual Studio 14 2015" + -DCMAKE_BUILD_TYPE=Release + -DGFLAGS_BUILD_TESTING=True + .. + - msbuild gflags.sln /toolsversion:14.0 /p:PlatformToolset=v140