-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,40 @@ | ||
#Makefile | ||
# Get the latest git tag | ||
CURRENT_VERSION=$(shell git describe --tags --abbrev=0 2>/dev/null || echo "v0.0.0") | ||
|
||
# Extract major, minor, and patch numbers | ||
MAJOR=$(shell echo $(CURRENT_VERSION) | cut -d. -f1 | tr -d v) | ||
MINOR=$(shell echo $(CURRENT_VERSION) | cut -d. -f2) | ||
PATCH=$(shell echo $(CURRENT_VERSION) | cut -d. -f3) | ||
|
||
# Test | ||
test: | ||
go test -v -failfast -count=1 -cover -covermode=count -coverprofile=coverage.out ./... | ||
go tool cover -func coverage.out | ||
|
||
.phony: test | ||
|
||
current-version: | ||
@echo $(CURRENT_VERSION) | ||
|
||
.PHONY: current-version | ||
|
||
release: | ||
@if [ "$(type)" = "major" ]; then \ | ||
NEW_MAJOR=$$(( $(MAJOR) + 1 )); \ | ||
NEW_VERSION="v$$NEW_MAJOR.0.0"; \ | ||
elif [ "$(type)" = "minor" ]; then \ | ||
NEW_MINOR=$$(( $(MINOR) + 1 )); \ | ||
NEW_VERSION="v$(MAJOR).$$NEW_MINOR.0"; \ | ||
elif [ "$(type)" = "patch" ]; then \ | ||
NEW_PATCH=$$(( $(PATCH) + 1 )); \ | ||
NEW_VERSION="v$(MAJOR).$(MINOR).$$NEW_PATCH"; \ | ||
else \ | ||
echo "Invalid release type. Use major, minor, or patch."; \ | ||
exit 1; \ | ||
fi; \ | ||
trap 'echo "Error encountered, cleaning up tags..."; git tag -d $$NEW_VERSION; git push origin :refs/tags/$$NEW_VERSION;' ERR; \ | ||
git tag -a $$NEW_VERSION -m "$(message)"; \ | ||
git push origin $$NEW_VERSION; \ | ||
trap - ERR; | ||
|
||
.PHONY: release |