forked from dtan4/valec
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
67 lines (55 loc) · 1.54 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
62
63
64
65
66
67
NAME := valec
VERSION := v0.8.0
REVISION := $(shell git rev-parse --short HEAD)
SRCS := $(shell find . -name '*.go' -type f)
LDFLAGS := -ldflags="-s -w -X \"github.com/wantedly/valec/version.Version=$(VERSION)\" -X \"github.com/wantedly/valec/version.Revision=$(REVISION)\" -extldflags \"-static\""
DIST_DIRS := find * -type d -exec
.DEFAULT_GOAL := bin/$(NAME)
bin/$(NAME): $(SRCS)
go build $(LDFLAGS) -o bin/$(NAME)
.PHONY: ci-test
ci-test:
echo "" > coverage.txt
for d in $$(go list ./... | grep -v aws/mock); do \
go test -coverprofile=profile.out -covermode=atomic -race -v $$d; \
if [ -f profile.out ]; then \
cat profile.out >> coverage.txt; \
rm profile.out; \
fi; \
done
.PHONY: clean
clean:
rm -rf bin/*
.PHONY: cross-build
cross-build:
for os in darwin linux windows; do \
for arch in amd64 386 arm64; do \
if [ $$os-$$arch = windows-arm64 ]; then \
continue; \
elif [ $$os-$$arch = darwin-386 ]; then \
continue; \
fi; \
GOOS=$$os GOARCH=$$arch go build -a -tags netgo -installsuffix netgo $(LDFLAGS) -o dist/$$os-$$arch/$(NAME); \
done; \
done
.PHONY: deps
deps:
go mod download
.PHONY: dist
dist:
cd dist && \
$(DIST_DIRS) cp ../LICENSE {} \; && \
$(DIST_DIRS) cp ../README.md {} \; && \
$(DIST_DIRS) tar -zcf $(NAME)-{}-$(VERSION).tar.gz {} \; && \
$(DIST_DIRS) zip -r $(NAME)-{}-$(VERSION).zip {} \; && \
cd ..
.PHONY: install
install:
go install $(LDFLAGS)
.PHONY: release
release:
git tag $(VERSION)
git push origin $(VERSION)
.PHONY: test
test:
go test -cover -race -v ./...