From 919d149ec0ff10eaaab6422d3db25da7364953bc Mon Sep 17 00:00:00 2001 From: Mark Mandel Date: Wed, 13 Jun 2018 14:26:13 -0700 Subject: [PATCH] Give linter 15 minutes. Trying to stop timeouts :/ --- build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Makefile b/build/Makefile index 224584b388..8ffaa2a08e 100644 --- a/build/Makefile +++ b/build/Makefile @@ -137,7 +137,7 @@ build-controller-binary: ensure-build-image # Lint the go source code. # use LINT_TIMEOUT to manipulate the linter timeout -lint: LINT_TIMEOUT ?= 5m +lint: LINT_TIMEOUT ?= 15m lint: ensure-build-image docker run --rm $(common_mounts) -w $(mount_path) $(DOCKER_RUN_ARGS) $(build_tag) bash -c \ "/root/gen-lint-exclude.sh && gometalinter --config .exclude.gometalinter.json --deadline=$(LINT_TIMEOUT) -t --skip vendor ./..."