.appveyor.yml 962 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. build_script:
  11. - |
  12. msbuild /nologo /m %solution_name% %BUILD_OPTIONS%
  13. before_build:
  14. # SDL submodule setup
  15. - |-
  16. git submodule update --init --recursive
  17. deploy:
  18. - provider: GitHub
  19. on:
  20. appveyor_repo_tag: true
  21. auth_token:
  22. secure: RYDRqm5LncsJG32FRSlCkLzkJC4ykCtlgO3+xW4q80wQOA3U9pHAe2beyMEduJIe
  23. artifacts:
  24. - path: win32/Win32/Release/sdlpal.exe
  25. name: Windows Desktop
  26. - path: winrt/AppPackages/SDLPal
  27. name: Universal Windows Platform
  28. type: zip
  29. notifications:
  30. - provider: Webhook
  31. url: https://webhooks.gitter.im/e/2accb0e6e37119e604b3
  32. method: POST
  33. on_build_success: true
  34. on_build_failure: true
  35. on_build_status_changed: true