Guest User

Untitled

a guest
Jan 16th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. # This is a sample build configuration for PHP.
  2. # Check our guides at https://confluence.atlassian.com/x/e8YWN for more
  3. examples.
  4. # Only use spaces to indent your .yml configuration.
  5. # -----
  6. # You can specify a custom docker image from Docker Hub as your build
  7. environment.
  8. image: php:7.1.11
  9.  
  10. pipelines:
  11. default:
  12. - step:
  13. caches:
  14. - composer
  15. script:
  16. - apt-get update && apt-get install -y unzip
  17. - curl -sS https://getcomposer.org/installer | php -- --install-
  18. dir=/usr/local/bin --filename=composer
  19. - composer install
  20. - vendor/bin/phpunit
Add Comment
Please, Sign In to add comment