Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. build_settings:
  2. ignore:
  3. - "vendor"
  4. - "tests"
  5. - "public/images"
  6. - "node_modules"
  7.  
  8. setup:
  9. shell:
  10. - "curl https://llama.altimit.online/api/phpci/setup"
  11. composer:
  12. action: "install"
  13.  
  14. test:
  15. shell:
  16. - "curl https://llama.altimit.online/api/phpci/test"
  17. php_code_sniffer:
  18. ignore:
  19. - "resources"
  20. - "vendor"
  21. - "storage"
  22. standard: "PSR2"
  23. allowed_errors: -1
  24. allowed_warnings: -1
  25. php_loc:
  26. directory: "app"
  27. php_mess_detector:
  28. ignore:
  29. - 'vendor'
  30. allowed_warnings: -1
  31. zero_config: true
  32. php_docblock_checker:
  33. allowed_warnings: -1
  34. skip_classes: true
  35.  
  36. complete:
  37.  
  38. success:
  39. shell:
  40. - "cd /var/www/compacct.api && sudo rm -rf *"
  41. - "cd %BUILD_PATH% && sudo mv * /var/www/compacct.api"
  42. - "sudo chown www-data:www-data -R /var/www/compacct.api"
  43. - "curl https://llama.altimit.online/api/phpci/success"
  44.  
  45. failure:
  46. shell:
  47. - "curl https://llama.altimit.online/api/phpci/failure"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement