.appveyor.yml 778 B

12345678910111213141516171819202122232425262728293031323334353637
  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. environment:
  13. api_key:
  14. secure: kR3Ac0NjGwFnTmXdFrR8d6VXjdk5F7L4F/BilC4nvaM=
  15. build:
  16. project: win32\VS2015\opus.sln
  17. parallel: true
  18. verbosity: minimal
  19. after_build:
  20. - cd %APPVEYOR_BUILD_FOLDER%
  21. - 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.??? include\*.h
  22. test_script:
  23. - cd %APPVEYOR_BUILD_FOLDER%\win32\VS2015\%PLATFORM%\%CONFIGURATION%
  24. - test_opus_api.exe
  25. - test_opus_decode.exe
  26. - test_opus_encode.exe
  27. artifacts:
  28. - path: opus.zip
  29. on_success:
  30. - ps: if ($env:api_key -and "$env:configuration/$env:platform" -eq "ReleaseDLL_fixed/x64") { Start-AppveyorBuild -ApiKey $env:api_key -ProjectSlug 'opus-tools' }