.appveyor.yml 467 B

123456789101112131415161718192021
  1. ---
  2. build: false
  3. install:
  4. - ps: Set-Service wuauserv -StartupType Manual
  5. - choco install php
  6. - choco install capture2text --version 3.9
  7. - choco install composer
  8. - refreshenv
  9. - cd %APPVEYOR_BUILD_FOLDER%
  10. - composer install
  11. test_script:
  12. - php tests\run.php unit e2e
  13. notifications:
  14. - provider: Webhook
  15. url: https://webhooks.gitter.im/e/b48c69af70a9047dba30
  16. on_build_success: true
  17. on_build_failure: true
  18. on_build_status_changed: true