.travis.yml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. sudo: false
  2. language: php
  3. branches:
  4. only:
  5. - stable
  6. cache:
  7. directories:
  8. - $HOME/.composer/cache
  9. before_install:
  10. - composer self-update
  11. install:
  12. - composer install --no-dev --no-interaction --ignore-platform-reqs
  13. - zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Core.zip .
  14. - composer require --update-no-dev --no-interaction "topthink/think-image:^1.0"
  15. - composer require --update-no-dev --no-interaction "topthink/think-migration:^1.0"
  16. - composer require --update-no-dev --no-interaction "topthink/think-captcha:^1.0"
  17. - composer require --update-no-dev --no-interaction "topthink/think-mongo:^1.0"
  18. - composer require --update-no-dev --no-interaction "topthink/think-worker:^1.0"
  19. - composer require --update-no-dev --no-interaction "topthink/think-helper:^1.0"
  20. - composer require --update-no-dev --no-interaction "topthink/think-queue:^1.0"
  21. - composer require --update-no-dev --no-interaction "topthink/think-angular:^1.0"
  22. - composer require --dev --update-no-dev --no-interaction "topthink/think-testing:^1.0"
  23. - zip -r --exclude='*.git*' --exclude='*.zip' --exclude='*.travis.yml' ThinkPHP_Full.zip .
  24. script:
  25. - php think unit
  26. deploy:
  27. provider: releases
  28. api_key:
  29. secure: TSF6bnl2JYN72UQOORAJYL+CqIryP2gHVKt6grfveQ7d9rleAEoxlq6PWxbvTI4jZ5nrPpUcBUpWIJHNgVcs+bzLFtyh5THaLqm39uCgBbrW7M8rI26L8sBh/6nsdtGgdeQrO/cLu31QoTzbwuz1WfAVoCdCkOSZeXyT/CclH99qV6RYyQYqaD2wpRjrhA5O4fSsEkiPVuk0GaOogFlrQHx+C+lHnf6pa1KxEoN1A0UxxVfGX6K4y5g4WQDO5zT4bLeubkWOXK0G51XSvACDOZVIyLdjApaOFTwamPcD3S1tfvuxRWWvsCD5ljFvb2kSmx5BIBNwN80MzuBmrGIC27XLGOxyMerwKxB6DskNUO9PflKHDPI61DRq0FTy1fv70SFMSiAtUv9aJRT41NQh9iJJ0vC8dl+xcxrWIjU1GG6+l/ZcRqVx9V1VuGQsLKndGhja7SQ+X1slHl76fRq223sMOql7MFCd0vvvxVQ2V39CcFKao/LB1aPH3VhODDEyxwx6aXoTznvC/QPepgWsHOWQzKj9ftsgDbsNiyFlXL4cu8DWUty6rQy8zT2b4O8b1xjcwSUCsy+auEjBamzQkMJFNlZAIUrukL/NbUhQU37TAbwsFyz7X0E/u/VMle/nBCNAzgkMwAUjiHM6FqrKKBRWFbPrSIixjfjkCnrMEPw=
  30. file:
  31. - ThinkPHP_Core.zip
  32. - ThinkPHP_Full.zip
  33. skip_cleanup: true
  34. on:
  35. tags: true