appveyor.yml 579 B

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