Skip to content

Commit

Permalink
Split 'make release' in to 'make new-release' and 'make release'
Browse files Browse the repository at this point in the history
  • Loading branch information
dcantrell committed Jun 26, 2020
1 parent 549026f commit 671601b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,12 @@ check: setup
srpm:
$(topdir)/utils/srpm.sh

release:
new-release:
$(topdir)/utils/release.sh -A

release:
$(topdir)/utils/release.sh -t -p

koji: srpm
$(topdir)/utils/submit-koji-builds.sh $$(ls -1 $(topdir)/*.tar.*) $$(basename $(topdir))

Expand All @@ -31,7 +34,8 @@ help:
@echo " setup Run 'meson setup $(MESON_BUILD_DIR)'"
@echo " check Run 'meson test -C $(MESON_BUILD_DIR) -v'"
@echo " srpm Generate an SRPM package of the latest release"
@echo " release Run 'utils/release.sh -A' to make a new release"
@echo " release Tag and push current tree as a release"
@echo " new-release Bump version, tag, and push current tree as a release"
@echo " koji Run 'make srpm' then 'utils/submit-koji-builds.sh'"
@echo " clean Run 'rm -rf $(MESON_BUILD_DIR)'"
@echo
Expand All @@ -42,7 +46,8 @@ help:
@echo " make check"
@echo
@echo "Make a new release on Github:"
@echo " make release"
@echo " make release # just tags and pushes"
@echo " make new-release # bumps version number, tags, and pushes"
@echo
@echo "Generate SRPM of the latest release and do all Koji builds:"
@echo " make koji"

0 comments on commit 671601b

Please sign in to comment.