-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
48 lines (36 loc) · 1005 Bytes
/
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
41
42
43
44
45
46
47
48
PKG = github.com/k1LoW/colr
COMMIT = $$(git describe --tags --always)
OSNAME=${shell uname -s}
ifeq ($(OSNAME),Darwin)
DATE = $$(gdate --utc '+%Y-%m-%d_%H:%M:%S')
else
DATE = $$(date --utc '+%Y-%m-%d_%H:%M:%S')
endif
export GO111MODULE=on
BUILD_LDFLAGS = -X $(PKG).commit=$(COMMIT) -X $(PKG).date=$(DATE)
default: test
ci: depsdev test test_integration
test:
go test ./... -coverprofile=coverage.out -covermode=count
test_integration: build
go test ./... -tags integration
lint:
golangci-lint run ./...
build:
go build -ldflags="$(BUILD_LDFLAGS)"
depsdev:
go install github.com/Songmu/ghch/cmd/[email protected]
go install github.com/Songmu/gocredits/cmd/[email protected]
go install github.com/securego/gosec/v2/cmd/[email protected]
prerelease:
git pull origin main --tag
go mod tidy
ghch -w -N ${VER}
gocredits . > CREDITS
git add CHANGELOG.md CREDITS
git commit -m'Bump up version number'
git tag ${VER}
release:
git push origin main --tag
goreleaser --rm-dist
.PHONY: default test