forked from beatlabs/patron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
50 lines (35 loc) · 1.42 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
DOCKER = docker
default: test
test: fmtcheck
go test ./... -cover -race -timeout 60s
testint: fmtcheck deps-start
go test ./... -race -cover -tags=integration -timeout 120s -count=1
cover: fmtcheck
go test ./... -coverpkg=./... -coverprofile=coverage.txt -tags=integration -covermode=atomic && \
go tool cover -func=coverage.txt && \
rm coverage.txt
ci: deps-start
go test ./... -race -cover -mod=vendor -coverprofile=coverage.txt -covermode=atomic -tags=integration && \
mv coverage.txt coverage.txt.tmp && \
cat coverage.txt.tmp | grep -v "/cmd/patron/" > coverage.txt
fmt:
go fmt ./...
fmtcheck:
@sh -c "'$(CURDIR)/script/gofmtcheck.sh'"
lint: fmtcheck
$(DOCKER) run --env=GOFLAGS=-mod=vendor --rm -v $(CURDIR):/app -w /app golangci/golangci-lint:v1.44.2 golangci-lint -v run
deeplint: fmtcheck
$(DOCKER) run --env=GOFLAGS=-mod=vendor --rm -v $(CURDIR):/app -w /app golangci/golangci-lint:v1.44.2 golangci-lint run --exclude-use-default=false --enable-all -D dupl --build-tags integration
modsync: fmtcheck
go mod tidy && go mod vendor
examples:
$(MAKE) -C examples
deps-start:
docker-compose up -d
deps-stop:
docker-compose down
# disallow any parallelism (-j) for Make. This is necessary since some
# commands during the build process create temporary files that collide
# under parallel conditions.
.NOTPARALLEL:
.PHONY: default test testint cover coverci fmt fmtcheck lint deeplint ci modsync deps-start deps-stop