From 388ca7e73c701911ec954cea2ed35997016094f0 Mon Sep 17 00:00:00 2001 From: Edward Thomson Date: Tue, 6 Jan 2015 15:16:25 -0600 Subject: [PATCH] Add appveyor yaml --- appveyor.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..5c3538556 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,19 @@ +version: '{build}' +branches: + only: + - master +build_script: +- ps: >- + choco install cmake + + choco install python2 + + mkdir build + + cd build + + cmake -D ENABLE_TRACE=ON -D BUILD_CLAR=ON -D STDCALL=ON .. -G"Visual Studio 11" + + cmake --build . --config RelWithDebInfo +test_script: +- ps: ctest -V .