-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
40 lines (33 loc) · 1.2 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# 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