Makefile 589 B

1234567891011121314151617181920212223242526272829
  1. all: clean test
  2. test:
  3. vendor/bin/phpunit $(TEST)
  4. coverage:
  5. vendor/bin/phpunit --coverage-html=artifacts/coverage $(TEST)
  6. view-coverage:
  7. open artifacts/coverage/index.html
  8. check-tag:
  9. $(if $(TAG),,$(error TAG is not defined. Pass via "make tag TAG=4.2.1"))
  10. tag: check-tag
  11. @echo Tagging $(TAG)
  12. chag update $(TAG)
  13. git commit -a -m '$(TAG) release'
  14. chag tag
  15. @echo "Release has been created. Push using 'make release'"
  16. @echo "Changes made in the release commit"
  17. git diff HEAD~1 HEAD
  18. release: check-tag
  19. git push origin master
  20. git push origin $(TAG)
  21. clean:
  22. rm -rf artifacts/*