.appveyor.yml 896 B

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