From 4822728f5d48f84aba9e3f0f7cec97522dd92a46 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 18 Jul 2022 17:35:36 +0300 Subject: [PATCH] Makefile: drop obsolete targets They're not used at least since 2019. --- Makefile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 9c8b4fcb6..dd8bb62ff 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ IMAGE_REPO=nspccdev/neo-go # All of the targets are phony here because we don't really use make dependency # tracking for files -.PHONY: build $(BINARY) deps image docker/$(BINARY) image-latest image-push image-push-latest check-version clean-cluster push-tag \ +.PHONY: build $(BINARY) deps image docker/$(BINARY) image-latest image-push image-push-latest clean-cluster \ test vet lint fmt cover build: deps @@ -86,21 +86,12 @@ image-push-latest: @echo "=> Publish image for Ubuntu with 'latest' tag" @docker push $(IMAGE_REPO):latest -check-version: - git fetch && (! git rev-list ${VERSION}) - deps: @CGO_ENABLED=0 \ go mod download @CGO_ENABLED=0 \ go mod tidy -v -push-tag: - git checkout ${BRANCH} - git pull origin ${BRANCH} - git tag ${VERSION} - git push origin ${VERSION} - test: @go test ./... -cover