appveyor.yml 743 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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: >-
  18. mkdir %APPVEYOR_BUILD_FOLDER%\artifacts
  19. cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
  20. for %%a in (lib dll exp pdb) do if exist opus.%%a copy opus.%%a %APPVEYOR_BUILD_FOLDER%\artifacts\
  21. cd %APPVEYOR_BUILD_FOLDER%
  22. 7z a opus.zip .\artifacts\* include\*.h
  23. test_script:
  24. - cmd: >-
  25. cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
  26. test_opus_api.exe
  27. test_opus_decode.exe
  28. test_opus_encode.exe
  29. artifacts:
  30. - path: opus.zip