-
Notifications
You must be signed in to change notification settings - Fork 113
/
Makefile
52 lines (40 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
51
52
########################################################
# Makefile #
########################################################
# Default target
all: format build
########################################################
# Setup #
########################################################
# Generate versioning information
TAG_COMMIT := $(shell git rev-list --abbrev-commit --tags --max-count=1)
TAG := $(shell git describe --abbrev=0 --tags ${TAG_COMMIT} 2>/dev/null || true)
COMMIT := $(shell git rev-parse --short HEAD)
DATE := $(shell git log -1 --format=%cd --date=format:"%Y%m%d")
VERSION := $(TAG:v%=%)
ifneq ($(COMMIT), $(TAG_COMMIT))
VERSION := $(VERSION)-next-$(COMMIT)-$(DATE)
endif
ifneq ($(shell git status --porcelain),)
VERSION := $(VERSION)-dirty
endif
########################################################
# Building #
########################################################
# Target for building the application in all directories
build:; go build ./...
# Run the example applications
run-%:; go run ./examples/$*/main.go start
# Format
lint: |
go run github.com/golangci/golangci-lint/cmd/golangci-lint run
# Test
test: |
go test -v ./...
# Format
format: |
go run github.com/golangci/golangci-lint/cmd/golangci-lint run --fix
generate: |
go generate ./...
tidy: |
go mod tidy