From: James Myatt Date: Fri, 11 Sep 2015 11:20:44 +0000 (+0100) Subject: Add initial version of Appveyor build script X-Git-Tag: json-c-0.13-20171207~181^2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f6f8436e974cf63c17bcc34a932b490302547a3a;p=thirdparty%2Fjson-c.git Add initial version of Appveyor build script --- diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 00000000..26615f2d --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,25 @@ +version: '{branch}.{build}' +os: Windows Server 2012 R2 +configuration: +- Debug +- Release +platform: x64 +environment: + matrix: + - PlatformToolset: v140 + - PlatformToolset: v120 + - PlatformToolset: Windows7.1SDK +build_script: +- > + msbuild "json-c.vcxproj" /m /verbosity:normal + /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" + /p:PlatformToolset=%PlatformToolset% +artifacts: +- path: Debug\* + name: Debug_x86 +- path: Release\* + name: Release_x86 +- path: x64\Debug\* + name: Debug_x64 +- path: x64\Release\* + name: Release_x64