From c80e8080e1804db5cf811184a1c35578d8891924 Mon Sep 17 00:00:00 2001 From: Julie Vogelman Date: Wed, 20 Apr 2022 11:57:15 -0700 Subject: [PATCH] fix: address timeout issue on CI server for 'make lint' (#1869) Signed-off-by: Julie Vogelman --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 43c14f416d..7bc853761a 100644 --- a/Makefile +++ b/Makefile @@ -144,7 +144,7 @@ $(GOPATH)/bin/golangci-lint: .PHONY: lint lint: $(GOPATH)/bin/golangci-lint go mod tidy - golangci-lint run --fix --verbose + golangci-lint run --fix --verbose --concurrency 4 --timeout 10m # release - targets only available on release branch ifneq ($(findstring release,$(GIT_BRANCH)),)