]> git.ipfire.org Git - thirdparty/json-c.git/commitdiff
Add initial version of Appveyor build script
authorJames Myatt <james.myatt@tessella.com>
Fri, 11 Sep 2015 11:20:44 +0000 (12:20 +0100)
committerJames Myatt <james@jamesmyatt.co.uk>
Fri, 9 Oct 2015 22:54:13 +0000 (23:54 +0100)
appveyor.yml [new file with mode: 0644]

diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644 (file)
index 0000000..26615f2
--- /dev/null
@@ -0,0 +1,25 @@
+version: '{branch}.{build}'\r
+os: Windows Server 2012 R2\r
+configuration:\r
+- Debug\r
+- Release\r
+platform: x64\r
+environment:\r
+  matrix:\r
+  - PlatformToolset: v140\r
+  - PlatformToolset: v120\r
+  - PlatformToolset: Windows7.1SDK\r
+build_script:\r
+- >\r
+  msbuild "json-c.vcxproj" /m /verbosity:normal\r
+  /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll"\r
+  /p:PlatformToolset=%PlatformToolset%\r
+artifacts:\r
+- path: Debug\*\r
+  name: Debug_x86\r
+- path: Release\*\r
+  name: Release_x86\r
+- path: x64\Debug\*\r
+  name: Debug_x64\r
+- path: x64\Release\*\r
+  name: Release_x64\r