-
Notifications
You must be signed in to change notification settings - Fork 259
/
Makefile
61 lines (44 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
current_dir = $(pwd)
pkgs = $(shell go list ./...)
gofiles := $(shell find . -name "*.go" -type f -not -path "./vendor/*")
BUILD_TAG = $(or $(shell git tag --points-at HEAD), $(EXT_BUILD_TAG), latest)
BUILD_CONSTS = \
-X main.buildTime=`date -u '+%Y-%m-%d_%H:%M:%S'` \
-X main.buildRevision=`git rev-parse HEAD` \
-X main.buildTag=$(BUILD_TAG)
BUILD_OPTS = -ldflags="$(BUILD_CONSTS)" -gcflags="-trimpath=$(GOPATH)/src"
.PHONY: update format build test run lint reconfigure clean release-build release
format:
go fmt $(pkgs)
gofmt -w -s $(gofiles)
build:
go build
test: build
go test -race $(pkgs)
run: build
./chproxy -config=testdata/http.yml
lint:
go vet $(pkgs)
golangci-lint run
tidy:
go mod tidy
deps:
go mod download
go-lint: deps tidy
golangci-lint run -v
reconfigure:
kill -HUP `pidof chproxy`
clean:
rm -f chproxy
release-build:
@echo "Ver: $(BUILD_TAG), OPTS: $(BUILD_OPTS)"
GOOS=linux GOARCH=amd64 go build $(BUILD_OPTS)
tar czf chproxy-linux-amd64-$(BUILD_TAG).tar.gz chproxy
rm chproxy-linux-amd64-*.tar.gz
release: format lint test clean release-build
@echo "Ver: $(BUILD_TAG), OPTS: $(BUILD_OPTS)"
tar czf chproxy-linux-amd64-$(BUILD_TAG).tar.gz chproxy
release-build-docker:
@echo "Ver: $(BUILD_TAG)"
@DOCKER_BUILDKIT=1 docker build --target build --build-arg EXT_BUILD_TAG=$(BUILD_TAG) --progress plain -t chproxy-build .
@docker run --rm --entrypoint "/bin/sh" -v $(CURDIR):/host chproxy-build -c "/bin/cp /go/src/github.com/contentsquare/chproxy/*.tar.gz /host"