.appveyor.yml 716 B

12345678910111213141516171819202122232425262728293031
  1. version: 1.{branch}.{build}
  2. pull_requests:
  3. do_not_increment_build_number: true
  4. branches:
  5. except:
  6. - rathena
  7. - coverity_scan
  8. skip_tags: true
  9. skip_branch_with_pr: true
  10. image: Visual Studio 2015
  11. clone_depth: 5
  12. environment:
  13. matrix:
  14. - HerculesProject: Hercules-14.sln
  15. - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
  16. HerculesProject: Hercules-15.sln
  17. - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
  18. HerculesProject: Hercules-16.sln
  19. services: mysql56
  20. build_script:
  21. - cmd: MSBuild %HerculesProject% /t:map-server,char-server,login-server
  22. test: off
  23. deploy: off
  24. notifications:
  25. - provider: Email
  26. to:
  27. - dev@herc.ws
  28. on_build_success: false
  29. on_build_failure: true
  30. on_build_status_changed: true