Update lint-ci rule

pull/5351/head
Thomas Stromberg 2019-09-13 14:42:56 -07:00
parent c1e4bcd3ec
commit 2d3138fb92
1 changed files with 2 additions and 2 deletions

View File

@ -331,8 +331,8 @@ lint: pkg/minikube/assets/assets.go pkg/minikube/translate/translations.go out/l
# lint-ci is slower version of lint and is meant to be used in ci (travis) to avoid out of memory leaks. # lint-ci is slower version of lint and is meant to be used in ci (travis) to avoid out of memory leaks.
.PHONY: lint-ci .PHONY: lint-ci
lint-ci: pkg/minikube/assets/assets.go pkg/minikube/translate/translations.go out/linters/golangci-lint lint-ci: pkg/minikube/assets/assets.go pkg/minikube/translate/translations.go out/linters/golangci-lint-$(GOLINT_VERSION)
GOGC=${GOLINT_GOGC} ./out/linters/golangci-lint run \ GOGC=${GOLINT_GOGC} ./out/linters/golangci-lint-$(GOLINT_VERSION) run \
--concurrency ${GOLINT_JOBS} ${GOLINT_OPTIONS} ./... --concurrency ${GOLINT_JOBS} ${GOLINT_OPTIONS} ./...
.PHONY: reportcard .PHONY: reportcard