summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-01-06 18:34:43 -0600
committerEdward Thomson <ethomson@edwardthomson.com>2015-01-06 18:34:43 -0600
commit9b22f8b414dddae0bcf506f8e9a93ba514de157f (patch)
treede28a1f079a13128143b564b1beb2b0161edbc50
parent007f3ff6fa68a95feee4e70f825a49ea0ec9cb2d (diff)
parent388ca7e73c701911ec954cea2ed35997016094f0 (diff)
downloadlibgit2-9b22f8b414dddae0bcf506f8e9a93ba514de157f.tar.gz
Merge pull request #2803 from ethomson/appveyor
Add appveyor yaml
-rw-r--r--appveyor.yml19
1 files changed, 19 insertions, 0 deletions
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 .