From 02fedd6780ab0209f913a4922c9ae9c3b97e1f31 Mon Sep 17 00:00:00 2001 From: Wilmer Paulino Date: Mon, 29 Mar 2021 16:01:27 -0700 Subject: [PATCH] build: remove goveralls --- .travis.yml | 1 - Makefile | 11 ----------- 2 files changed, 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index ff1946b..b6aced7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,4 +11,3 @@ script: - make lint - make unit-race - make unit-cover - - make goveralls diff --git a/Makefile b/Makefile index 5c2de92..df3a936 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,10 @@ PKG := github.com/btcsuite/btcwallet -GOVERALLS_PKG := github.com/mattn/goveralls LINT_PKG := github.com/golangci/golangci-lint/cmd/golangci-lint GOACC_PKG := github.com/ory/go-acc GOIMPORTS_PKG := golang.org/x/tools/cmd/goimports GO_BIN := ${GOPATH}/bin -GOVERALLS_BIN := $(GO_BIN)/goveralls LINT_BIN := $(GO_BIN)/golangci-lint GOACC_BIN := $(GO_BIN)/go-acc @@ -49,10 +47,6 @@ all: build check # DEPENDENCIES # ============ -$(GOVERALLS_BIN): - @$(call print, "Fetching goveralls.") - go get -u $(GOVERALLS_PKG) - $(LINT_BIN): @$(call print, "Fetching linter") $(DEPGET) $(LINT_PKG)@$(LINT_COMMIT) @@ -97,10 +91,6 @@ unit-race: @$(call print, "Running unit race tests.") env CGO_ENABLED=1 GORACE="history_size=7 halt_on_errors=1" $(GOLIST) | $(XARGS) env $(GOTEST) -race -goveralls: $(GOVERALLS_BIN) - @$(call print, "Sending coverage report.") - $(GOVERALLS_BIN) -coverprofile=coverage.txt -service=travis-ci - # ========= # UTILITIES # ========= @@ -126,7 +116,6 @@ clean: unit \ unit-cover \ unit-race \ - goveralls \ fmt \ lint \ clean