-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Makefile
66 lines (50 loc) · 1.49 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
PKG = github.com/k1LoW/octocov
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
export CGO_ENABLED=1
BUILD_LDFLAGS = -X $(PKG).commit=$(COMMIT) -X $(PKG).date=$(DATE)
default: test
ci: depsdev test test_no_coverage
test:
go test ./... -coverprofile=coverage.out -covermode=count
test_central: build
./octocov --config testdata/octocov_central.yml
test_no_coverage: build
./octocov --config testdata/octocov_no_coverage.yml
lint:
golangci-lint run ./...
govulncheck ./...
go vet -vettool=`which gostyle` -gostyle.config=$(PWD)/.gostyle.yml ./...
build:
go build -ldflags="$(BUILD_LDFLAGS)"
build_badgen:
go build -ldflags="$(BUILD_LDFLAGS)" -o badgen pkg/badge/cmd/badgen/main.go
coverage: build
./octocov
bqdoc:
cd docs/bq && tbls doc -f
depsdev:
go install github.com/Songmu/ghch/cmd/ghch@latest
go install github.com/Songmu/gocredits/cmd/gocredits@latest
go install golang.org/x/vuln/cmd/govulncheck@latest
go install github.com/k1LoW/gostyle@latest
prerelease:
git pull origin main --tag
go mod tidy
ghch -w -N ${VER}
gocredits -skip-missing -w
cat _EXTRA_CREDITS >> CREDITS
git add CHANGELOG.md CREDITS go.mod go.sum
git commit -m'Bump up version number'
git tag ${VER}
prerelease_for_tagpr:
gocredits -skip-missing -w
cat _EXTRA_CREDITS >> CREDITS
git add CHANGELOG.md CREDITS go.mod go.sum
.PHONY: default test