.appveyor.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. version: 2.0.{build}
  2. image:
  3. - Visual Studio 2015
  4. environment:
  5. matrix:
  6. - solution_name: win32/sdlpal.sln
  7. BUILD_OPTIONS: /p:Configuration=Release
  8. - solution_name: winrt/SDLPal.UWP.sln
  9. BUILD_OPTIONS: /p:Configuration=Release;AppxBundle=Always;AppxBundlePlatforms="x86|x64|ARM"
  10. - solution_name: winrt/SDLPal.Windows.sln
  11. BUILD_OPTIONS: /p:Configuration=Release;AppxBundle=Always;AppxBundlePlatforms="x86|x64|ARM"
  12. - solution_name: winrt/SDLPal.WindowsPhone.sln
  13. BUILD_OPTIONS: /p:Configuration=Release;AppxBundle=Always;AppxBundlePlatforms="ARM"
  14. build_script:
  15. - |
  16. msbuild /nologo /m %solution_name% %BUILD_OPTIONS%
  17. before_build:
  18. # SDL submodule setup
  19. - |-
  20. git submodule update --init --recursive
  21. deploy:
  22. - provider: GitHub
  23. on:
  24. appveyor_repo_tag: true
  25. auth_token:
  26. secure: RYDRqm5LncsJG32FRSlCkLzkJC4ykCtlgO3+xW4q80wQOA3U9pHAe2beyMEduJIe
  27. artifacts:
  28. - path: win32/Win32/Release/sdlpal.exe
  29. name: Windows Desktop
  30. - path: winrt/AppPackages/SDLPal
  31. name: Universal Windows Platform
  32. type: zip
  33. notifications:
  34. - provider: Webhook
  35. url: https://webhooks.gitter.im/e/2accb0e6e37119e604b3
  36. method: POST
  37. on_build_success: true
  38. on_build_failure: true
  39. on_build_status_changed: true