blob: 72b45f91206196a0e20f13a0ebc18e7254a8028b (
plain)
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
|
default: build
build: gofmtcheck golint vet
go build
install:
go install
test:
bash travis/run_acceptance_test.sh
vet:
@echo "go vet ."
@go vet $$(go list ./... | grep -v vendor/) ; 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
golint:
golint ./libvirt
gofmtcheck:
bash travis/gofmtcheck.sh
.PHONY: build install test vet fmt golint
|