summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorhardly <vik.kirilov@gmail.com>2014-08-06 00:43:51 +0300
committeronqtam <vik.kirilov@gmail.com>2016-03-05 05:20:00 +0200
commitb1e7e147a8a71d67e38dbcc20687399bd73e563a (patch)
tree494492810420236ca5ebb1cba54a84f12b30df2a /appveyor.yml
squashing git history for the last time
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml52
1 files changed, 52 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000..5f15002
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,52 @@
+# http://www.appveyor.com/docs/appveyor-yml
+
+notifications:
+ - provider: Email
+ to:
+ - vik.kirilov@gmail.com
+ on_build_status_changed: true
+ on_build_failure: true
+ on_build_success: false
+ # gitter
+ - provider: Webhook
+ url: https://webhooks.gitter.im/e/3a78202a235c0325e516
+ on_build_status_changed: true
+ on_build_failure: true
+ on_build_success: false
+
+clone_depth: 5
+branches:
+ except:
+ - gh-pages
+ - coverity_scan
+
+matrix:
+ fast_finish: true
+
+environment:
+ matrix:
+ - platform: x86
+ configuration: Debug
+ arch: "Win32"
+ VS_GEN: ""
+ - platform: x86
+ configuration: Release
+ arch: "Win32"
+ VS_GEN: ""
+ - platform: x64
+ configuration: Debug
+ arch: "x64"
+ VS_GEN: " Win64"
+ - platform: x64
+ configuration: Release
+ arch: "x64"
+ VS_GEN: " Win64"
+
+before_build:
+ - cmake . -G "Visual Studio 14 2015%VS_GEN%"
+build_script:
+ - msbuild all.sln /p:Configuration=%Configuration%;Platform=%arch% /maxcpucount
+test_script:
+# temporarily disabled - output will change often so no need for this yet
+# - cmake . -DTEST_MODE=COMPARE
+ - ctest -C %configuration% --output-on-failure \ No newline at end of file