1image: Visual Studio 2015 2configuration: 3- Debug 4- DebugDLL 5- DebugDLL_fixed 6- Release 7- ReleaseDLL 8- ReleaseDLL_fixed 9 10platform: 11- Win32 12- x64 13 14environment: 15 api_key: 16 secure: kR3Ac0NjGwFnTmXdFrR8d6VXjdk5F7L4F/BilC4nvaM= 17 18build: 19 project: win32\VS2015\opus.sln 20 parallel: true 21 verbosity: minimal 22 23after_build: 24- cd %APPVEYOR_BUILD_FOLDER% 25- 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.??? include\*.h 26 27test_script: 28- cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION% 29- test_opus_api.exe 30- test_opus_decode.exe 31- test_opus_encode.exe 32 33artifacts: 34- path: opus.zip 35 36on_success: 37- ps: if ($env:api_key -and "$env:configuration/$env:platform" -eq "ReleaseDLL_fixed/x64") { Start-AppveyorBuild -ApiKey $env:api_key -ProjectSlug 'opus-tools' } 38