appveyor.yml 518 B

12345678910111213141516171819202122232425262728293031323334
  1. image: Visual Studio 2015
  2. configuration:
  3. - Debug
  4. - DebugDLL
  5. - DebugDLL_fixed
  6. - Release
  7. - ReleaseDLL
  8. - ReleaseDLL_fixed
  9. platform:
  10. - Win32
  11. - x64
  12. build:
  13. project: win32\VS2015\opus.sln
  14. parallel: true
  15. verbosity: minimal
  16. after_build:
  17. - cmd: 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.lib include\*.h
  18. test_script:
  19. - cmd: >-
  20. cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
  21. test_opus_api.exe
  22. test_opus_decode.exe
  23. test_opus_encode.exe
  24. artifacts:
  25. - path: opus.zip