From fc40eb89d60564b2fdbae121e466ce962fac15fd Mon Sep 17 00:00:00 2001 From: Yun Date: Wed, 20 Nov 2019 12:21:53 +0900 Subject: [PATCH] ci test --- contrib/devtools/Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/contrib/devtools/Makefile b/contrib/devtools/Makefile index 7e8c8056b..93a3577cc 100644 --- a/contrib/devtools/Makefile +++ b/contrib/devtools/Makefile @@ -43,11 +43,13 @@ TOOLS_DESTDIR ?= $(GOPATH)/bin GOLANGCI_LINT = $(TOOLS_DESTDIR)/golangci-lint STATIK = $(TOOLS_DESTDIR)/statik -RUNSIM = $(TOOLS_DESTDIR)/runsim +RUNSIM = $(TOOLS_DESTDIR)/runsim all: tools -tools: statik runsim golangci-lint +tools: tools-stamp +tools-stamp: $(RUNSIM) + touch $@ golangci-lint: $(GOLANGCI_LINT) $(GOLANGCI_LINT): $(mkfile_dir)/install-golangci-lint.sh @@ -69,7 +71,6 @@ $(STATIK): # go.{mod, sum} files. # # ref: https://github.com/golang/go/issues/30515 -runsim: $(RUNSIM) $(RUNSIM): @echo "Installing runsim..." @(cd /tmp && go get github.com/cosmos/tools/cmd/runsim@v1.0.0) @@ -78,4 +79,4 @@ tools-clean: rm -f $(STATIK) $(GOLANGCI_LINT) $(RUNSIM) rm -f tools-stamp -.PHONY: all tools tools-clean \ No newline at end of file +.PHONY: all tools tools-clean