Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. node {
  2. stage("composer_install") {
  3. sh 'composer install'
  4. }
  5.  
  6. stage("php_lint") {
  7. sh 'find . -name "*.php" -print0 | xargs -0 -n1 php -l'
  8. }
  9.  
  10. stage("phpunit") {
  11. sh 'vendor/bin/phpunit'
  12. }
  13.  
  14. stage("codeception") {
  15. sh 'vendor/bin/codecept run'
  16. }
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement