appveyor.yml 601 B

123456789101112131415161718192021222324
  1. version: 1.0.{build}
  2. skip_tags: true
  3. clone_depth: 1
  4. init:
  5. - git config --global core.autocrlf input
  6. # Mingw and Cygwin now builtin: http://www.appveyor.com/updates/2015/05/30
  7. #os: MinGW
  8. # TODO still broken. rather try MSVC
  9. build_script:
  10. - set PATH=C:\windows\system32;C:\Perl\site\bin;C:\Perl\bin;C:\windows;C:\MinGW\bin
  11. - ppm install dmake
  12. - perl Makefile.PL MAKE=dmake
  13. - dmake
  14. test_script:
  15. - dmake test
  16. notifications:
  17. - provider: Email
  18. to:
  19. - rurban@cpan.org
  20. subject: B-C windows build
  21. on_build_success: true
  22. on_build_failure: true
  23. on_build_status_changed: false