aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorJoakim Soderberg <joakim.soderberg@gmail.com>2014-09-24 18:02:04 +0200
committerJoakim Soderberg <joakim.soderberg@gmail.com>2014-09-24 18:08:45 +0200
commitb94d767f86f712af7529654999663ed20d7afad3 (patch)
tree4e316b9dbfa9d000898bb0c9f51a0d2edd863de5 /appveyor.yml
parent43f17d010aadf683a7caa02a5988aa41d9bc6b7d (diff)
downloadjansson-b94d767f86f712af7529654999663ed20d7afad3.zip
jansson-b94d767f86f712af7529654999663ed20d7afad3.tar.gz
jansson-b94d767f86f712af7529654999663ed20d7afad3.tar.bz2
Added Windows CI support with appveyor
Added support for http://www.appveyor.com/ (login via github account). This will build the project and run the unit tests on Windows as well. Possible to add a badge like with Travis in the README.md as well.
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml6
1 files changed, 6 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..5663334
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,6 @@
+build_script:
+ - md build
+ - cd build
+ - cmake ..
+ - cmake --build . --config Release
+ - ctest --output-on-failure \ No newline at end of file