Only do go vet on this codebase
This commit is contained in:
parent
72dd299ca0
commit
08c976f811
1 changed files with 6 additions and 4 deletions
10
Makefile
10
Makefile
|
@ -11,6 +11,7 @@ BUILD_FLAGS = "-v"
|
||||||
RELEASE_ROOT = "release"
|
RELEASE_ROOT = "release"
|
||||||
RELEASE_GOGS = "release/gogs"
|
RELEASE_GOGS = "release/gogs"
|
||||||
NOW = $(shell date -u '+%Y%m%d%I%M%S')
|
NOW = $(shell date -u '+%Y%m%d%I%M%S')
|
||||||
|
GOVET = go tool vet -composites=false -methods=false -structtags=false
|
||||||
|
|
||||||
.PHONY: build pack release bindata clean
|
.PHONY: build pack release bindata clean
|
||||||
|
|
||||||
|
@ -18,17 +19,18 @@ NOW = $(shell date -u '+%Y%m%d%I%M%S')
|
||||||
|
|
||||||
# FIXME: find a way to ignore /vendor/ and /data/ directories.
|
# FIXME: find a way to ignore /vendor/ and /data/ directories.
|
||||||
govet:
|
govet:
|
||||||
go tool vet -composites=false -methods=false -structtags=false .
|
$(GOVET) gogs.go
|
||||||
|
$(GOVET) models modules routers
|
||||||
|
|
||||||
build: $(GENERATED) govet
|
build: $(GENERATED)
|
||||||
go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
|
go install $(BUILD_FLAGS) -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
|
||||||
cp '$(GOPATH)/bin/gogs' .
|
cp '$(GOPATH)/bin/gogs' .
|
||||||
|
|
||||||
build-dev: $(GENERATED)
|
build-dev: $(GENERATED) govet
|
||||||
go install $(BUILD_FLAGS) -tags '$(TAGS)'
|
go install $(BUILD_FLAGS) -tags '$(TAGS)'
|
||||||
cp '$(GOPATH)/bin/gogs' .
|
cp '$(GOPATH)/bin/gogs' .
|
||||||
|
|
||||||
build-dev-race: $(GENERATED)
|
build-dev-race: $(GENERATED) govet
|
||||||
go install $(BUILD_FLAGS) -race -tags '$(TAGS)'
|
go install $(BUILD_FLAGS) -race -tags '$(TAGS)'
|
||||||
cp '$(GOPATH)/bin/gogs' .
|
cp '$(GOPATH)/bin/gogs' .
|
||||||
|
|
||||||
|
|
Reference in a new issue