-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMakefile
55 lines (39 loc) · 1.32 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
.PHONY: build help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
#
# Tests
#
test-short: ## Run tests with -short flag
go test -timeout 30s -short -race ./...
test: ## Run tests
go test -timeout 2m -race ./...
test-short-extra: ## Run tests with -short flag
CGO_ENABLED=1 go test -tags cgo_sqlite -timeout 30s -short -race ./...
compile-tests: ## Compile test and benchmarks
for pkg in $$(go list ./...) ; do \
go test -c -bench . $$pkg ; \
done
#
# Build
#
build: ## Build an example baker binary
go build -v -o baker-bin-example ./examples/advanced/
build-extra: ## Build an example baker binary with the "extra" components (sqlite3 output atm)
CGO_ENABLED=1 go build -v -tags cgo_sqlite -o baker-bin-example ./examples/advanced/
#
# Coverage reports
#
--ci-cover:
@go test -coverprofile coverage.txt -covermode atomic ./...
cover: --ci-cover ## Create & open the unit-test coverage report
@go tool cover -html coverage.txt
#
# Format / Lint / Static checks
#
gofmt: ## Run gofmt locally without overwriting any file
gofmt -d -s $$(find . -name '*.go' | grep -v vendor)
gofmt-write: ## Run gofmt locally overwriting files
gofmt -w -s $$(find . -name '*.go' | grep -v vendor)
govet: ## Run go vet on the project
go vet ./...