From 7af3bdcdcb427910a3e53d4d4bc6a12f19376d2a Mon Sep 17 00:00:00 2001 From: Evan Nemerson Date: Sat, 23 Jun 2018 12:14:08 -0700 Subject: [PATCH] Add AppVeyor support. --- appveyor.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..bb49afc --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,28 @@ +environment: + matrix: + - GENERATOR: Visual Studio 14 2015 Win64 + - GENERATOR: Visual Studio 14 2015 + - GENERATOR: Visual Studio 12 2013 Win64 + # - GENERATOR: Visual Studio 11 2012 + # - GENERATOR: Visual Studio 10 2010 Win64 + # - GENERATOR: Visual Studio 9 2008 + +branches: + except: + - /^(wip\/)?(travis|osx|ipp)(\-.+)?$/ + - /^master$/ + +before_build: + - ps: | + git submodule -q update --init --recursive + mkdir build + cd build + cmake -G "$env:GENERATOR" .. + +build_script: + - ps: | + cmake --build . --config Debug + +# test_script: +# - ps: | +# ctest --output-on-failure --interactive-debug-mode 0 -C Debug -V