From: inikep Date: Mon, 9 May 2016 12:04:40 +0000 (+0200) Subject: added appveyor.yml X-Git-Tag: v0.6.1^2~14^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=03bf5ad6cba0c449aff9bfd6a93a9d0033876145;p=thirdparty%2Fzstd.git added appveyor.yml --- diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..04fea761e --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +version: 1.0.{build} +configuration: +- Release +- Debug +platform: +- Win32 +- x64 +environment: + matrix: + - PlatformToolset: v110 + - PlatformToolset: v140 +build_script: +- cmd: >- + ECHO PlatformToolset=%PlatformToolset% + + msbuild "visual\2013\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=%PlatformToolset% /t:Clean,Build /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" +test_script: +- cmd: >- + ECHO %APPVEYOR_BUILD_FOLDER%\bin\%PLATFORM%\%CONFIGURATION%\fuzzer.exe %FUZZERTEST% + + SET FUZZERTEST=-T5mn + + IF %CONFIGURATION%==Release (%APPVEYOR_BUILD_FOLDER%\visual\2013\bin\%PLATFORM%\%CONFIGURATION%\fuzzer.exe %FUZZERTEST%) \ No newline at end of file