This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
forked from asteris-llc/vaultfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
71 lines (59 loc) · 2.43 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
68
69
70
71
TEST?=$(shell GO15VENDOREXPERIMENT=1 go list -f '{{.ImportPath}}/...' ./... | grep -v /vendor/ | sed "s|$(shell go list -f '{{.ImportPath}}' .)|.|g" | sed "s/\.\/\.\.\./\.\//g")
VET?=$(shell echo ${TEST} | sed "s/\.\.\.//g" | sed "s/\.\/ //g")
VETARGS?=-asmdecl -atomic -bool -buildtags -copylocks -methods -nilfunc -printf -rangeloops -shift -structtags -unsafeptr
NAME=$(shell awk -F\" '/^const Name/ { print $$2 }' cmd/version.go)
VERSION=$(shell awk -F\" '/^const Version/ { print $$2 }' cmd/version.go)
all: test vaultfs
vaultfs:
GO15VENDOREXPERIMENT=1 go build .
install: fmtcheck
GO15VENDOREXPERIMENT=1 go install .
# test runs the unit tests and vets the code
test: fmtcheck vet lint
@echo "==> Testing"
GO15VENDOREXPERIMENT=1 go test $(TEST) $(TESTARGS) -timeout=30s -parallel=4
# testrace runs the race checker
testrace: fmtcheck
GO15VENDOREXPERIMENT=1 go test -race $(TEST) $(TESTARGS)
cover:
@go tool cover 2>/dev/null; if [ $$? -eq 3 ]; then \
go get -u golang.org/x/tools/cmd/cover; \
fi
GO15VENDOREXPERIMENT=1 go test $(TEST) -coverprofile=coverage.out
GO15VENDOREXPERIMENT=1 go tool cover -html=coverage.out
rm coverage.out
# vet runs the Go source code static analysis tool `vet` to find
# any common errors.
vet:
@echo "==> Cheking that code complies with go vet requirements..."
@go tool vet 2>/dev/null ; if [ $$? -eq 3 ]; then \
go get golang.org/x/tools/cmd/vet; \
fi
@GO15VENDOREXPERIMENT=1 go tool vet $(VETARGS) $(VET) ; if [ $$? -eq 1 ]; then \
echo ""; \
echo "Vet found suspicious constructs. Please check the reported constructs"; \
echo "and fix them if necessary before submitting the code for review."; \
exit 1; \
fi
lint:
@golint 2>/dev/null; if [ $$? -eq 127 ]; then \
go get github.com/golang/lint/golint; \
fi
@GO15VENDOREXPERIMENT=1 sh -c "'$(CURDIR)/scripts/golint.sh' ${VET}"; if [ $$? -eq 1 ]; then \
echo ""; \
echo "lint found errors in the code. Please check the errors listed above"; \
echo "and fix them if necessary before submitting the code for review."; \
exit 1; \
fi
fmt:
gofmt -w $(shell echo $(TEST) | sed 's/\.\.\./*.go/g' | sed 's/\.\//.\/*.go/')
fmtcheck:
@sh -c "'$(CURDIR)/scripts/gofmtcheck.sh'"
vaultfs-%-linux-amd64.tar.gz: test
./release/build.sh
mkdir vaultfs-$*-linux-amd64
mv vaultfs vaultfs-$*-linux-amd64/vaultfs
cp README.md LICENSE vaultfs-$*-linux-amd64/
tar -czvf $@ vaultfs-$*-linux-amd64
rm -rf vaultfs-$*-linux-amd64
.PHONY: all test vet fmt fmtcheck lint