-
Notifications
You must be signed in to change notification settings - Fork 12
/
Makefile
52 lines (36 loc) · 1.62 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
.PHONY: default build test style docker binaries clean
DOCKER ?= docker
APP := tr1d1um
DOCKER_ORG := ghcr.io/xmidt-org
VERSION ?= $(shell git describe --tag --always --dirty)
PROGVER ?= $(shell git describe --tags `git rev-list --tags --max-count=1` | tail -1 | sed 's/v\(.*\)/\1/')
BUILDTIME = $(shell date -u '+%c')
GITCOMMIT = $(shell git rev-parse --short HEAD)
GOBUILDFLAGS = -a -ldflags "-w -s -X 'main.Date=$(BUILDTIME)' -X main.Commit=$(GITCOMMIT) -X main.Version=$(VERSION)" -o $(APP)
default: build
generate:
go generate ./...
go install ./...
test:
go test -v -race -coverprofile=coverage.txt ./...
go test -v -race -json ./... > report.json
style:
! gofmt -d $$(find . -path ./vendor -prune -o -name '*.go' -print) | grep '^'
check:
golangci-lint run -n | tee errors.txt
build:
CGO_ENABLED=0 go build $(GOBUILDFLAGS)
release: build
upx $(APP)
docker:
-$(DOCKER) rmi "$(DOCKER_ORG)/$(APP):$(VERSION)"
-$(DOCKER) rmi "$(DOCKER_ORG)/$(APP):latest"
$(DOCKER) build -t "$(DOCKER_ORG)/$(APP):$(VERSION)" -t "$(DOCKER_ORG)/$(APP):latest" .
binaries: generate
mkdir -p ./.ignore
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o ./.ignore/$(APP)-$(PROGVER).darwin-amd64 -ldflags "-X 'main.Date=$(BUILDTIME)' -X main.Commit=$(GITCOMMIT) -X main.Version=$(VERSION)"
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o ./.ignore/$(APP)-$(PROGVER).linux-amd64 -ldflags "-X 'main.Date=$(BUILDTIME)' -X main.Commit=$(GITCOMMIT) -X main.Version=$(VERSION)"
upx ./.ignore/$(APP)-$(PROGVER).darwin-amd64
upx ./.ignore/$(APP)-$(PROGVER).linux-amd64
clean:
-rm -r .ignore/ $(APP) errors.txt report.json coverage.txt