Skip to content

Commit

Permalink
Increase deadline to 5 minutes to accommodate slow systems
Browse files Browse the repository at this point in the history
Issue #43
  • Loading branch information
datamattsson authored Aug 7, 2018
1 parent dcd3130 commit 97d9661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ LD_FLAGS = '-X main.Version=$(VERSION) -X main.Commit=$(COMMIT)'

# gometalinter allows us to have a single target that runs multiple linters in
# the same fashion. This variable controls which linters are used.
LINTER_FLAGS = --vendor --disable-all --enable=vet --enable=vetshadow --enable=golint --enable=ineffassign --enable=goconst --enable=deadcode --enable=dupl --enable=varcheck --enable=gocyclo --enable=misspell
LINTER_FLAGS = --vendor --disable-all --enable=vet --enable=vetshadow --enable=golint --enable=ineffassign --enable=goconst --enable=deadcode --enable=dupl --enable=varcheck --enable=gocyclo --enable=misspell --deadline=300s

# list of packages
PACKAGE_LIST = $(shell export $(GOENV) && go list ./$(PKG_PATH)...| grep -v vendor)
Expand Down Expand Up @@ -130,4 +130,4 @@ doryd_docker: doryd; $(info $(A1) doryd_docker)
@echo "$(A2) rm current doryd image"
-docker image rm kube-storage-controller-dory:edge
@echo "$(A2) build doryd image"
docker build -t kube-storage-controller-dory:edge -f ./build/docker/doryd/Dockerfile .
docker build -t kube-storage-controller-dory:edge -f ./build/docker/doryd/Dockerfile .

0 comments on commit 97d9661

Please sign in to comment.