From 764360acdc96468c1e4521f317a81f5f74b401ce Mon Sep 17 00:00:00 2001 From: Dmitry Fleytman Date: Tue, 13 Jun 2017 14:39:32 +0300 Subject: [PATCH] ci: Integrate with Appveyor This patch introduces Appveyor CI configuration file. Having this patch pushed and qxl-wddm-dod repository registered at Appveyor, every push or merge request will be automatically built on their servers. Signed-off-by: Dmitry Fleytman Acked-by: Frediano Ziglio --- .appveyor.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000..f3f3e5c --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,18 @@ +image: Visual Studio 2015 + +version: build-{build}-{branch} + +before_build: + - ren "C:\Program Files (x86)\Windows Kits\10\include\00wdf" "wdf" + +build_script: buildAll.bat + +skip_commits: + message: /\[ci skip\]/ + +notifications: + - provider: Email + to: spice-devel@lists.freedesktop.org + on_build_success: false + on_build_failure: true + on_build_status_changed: true