appveyor.yml 613 B

12345678910111213141516171819202122232425262728293031
  1. image: Visual Studio 2017
  2. platform:
  3. - x64
  4. configuration:
  5. - Release
  6. - Debug
  7. before_build:
  8. - cmake . -G "Visual Studio 15 2017 Win64" -DENET_SHARED=1 -DENET_TEST=1
  9. build:
  10. project: $(APPVEYOR_BUILD_FOLDER)\$(APPVEYOR_PROJECT_NAME).sln
  11. test_script:
  12. - '%APPVEYOR_BUILD_FOLDER%\%CONFIGURATION%\enet_test.exe'
  13. artifacts:
  14. - path: '%APPVEYOR_BUILD_FOLDER%\Release\*.dll'
  15. name: Releases
  16. deploy:
  17. provider: GitHub
  18. auth_token:
  19. secure: "tYm5oXMHHaO3oR5xd93zvnG95eqNZWw065Z9Qo6CAN3+2G7IlWbcmbsYlsl2XDFc"
  20. artifact: /.*\.dll/
  21. draft: false
  22. prerelease: false
  23. on:
  24. appveyor_repo_tag: true