Makefile.release 992 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Makefile for releasing.
  2. #
  3. # The release is controlled from version.go. The version found there is
  4. # used to tag the git repo, we're not building any artifects so there is nothing
  5. # to upload to github.
  6. #
  7. # * Up the version in version.go
  8. # * Run: make -f Makefile.release release
  9. # * will *commit* your change with 'Release $VERSION'
  10. # * push to github
  11. #
  12. define GO
  13. //+build ignore
  14. package main
  15. import (
  16. "fmt"
  17. "github.com/miekg/dns"
  18. )
  19. func main() {
  20. fmt.Println(dns.Version.String())
  21. }
  22. endef
  23. $(file > version_release.go,$(GO))
  24. VERSION:=$(shell go run version_release.go)
  25. TAG="v$(VERSION)"
  26. all:
  27. @echo Use the \'release\' target to start a release $(VERSION)
  28. rm -f version_release.go
  29. .PHONY: release
  30. release: commit push
  31. @echo Released $(VERSION)
  32. rm -f version_release.go
  33. .PHONY: commit
  34. commit:
  35. @echo Committing release $(VERSION)
  36. git commit -am"Release $(VERSION)"
  37. git tag $(TAG)
  38. .PHONY: push
  39. push:
  40. @echo Pushing release $(VERSION) to master
  41. git push --tags
  42. git push