-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
1,340 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,112 @@ | ||
BUILDDIR ?= $(CURDIR)/build | ||
PROJECT_NAME = Faucet | ||
FIND_ARGS := -name '*.go' -type f | ||
PACKAGES=$(shell go list ./...) | ||
VERSION := $(shell echo $(shell git describe --tags 2> /dev/null || echo "dev-$(shell git describe --always)") | sed 's/^v//') | ||
COVER_FILE := coverage.txt | ||
COVER_HTML_FILE := cover.html | ||
|
||
all: install | ||
export GO111MODULE = on | ||
|
||
$(BUILDDIR)/: | ||
mkdir -p $@ | ||
############################################################################### | ||
### Test ### | ||
############################################################################### | ||
|
||
BUILD_TARGETS := build install | ||
build: $(BUILDDIR)/ | ||
build: BUILD_ARGS=-o=$(BUILDDIR) | ||
## test-unit: Run the unit tests. | ||
test-unit: | ||
@echo Running unit tests... | ||
@VERSION=$(VERSION) go test -mod=readonly -v -timeout 30m $(PACKAGES) | ||
|
||
$(BUILD_TARGETS): | ||
go $@ -mod=readonly $(BUILD_FLAGS) $(BUILD_ARGS) ./... | ||
## test-race: Run the unit tests checking for race conditions | ||
test-race: | ||
@echo Running unit tests with race condition reporting... | ||
@VERSION=$(VERSION) go test -mod=readonly -v -race -timeout 30m $(PACKAGES) | ||
|
||
test: | ||
go test ./... | ||
## test-cover: Run the unit tests and create a coverage html report | ||
test-cover: | ||
@echo Running unit tests and creating coverage report... | ||
@VERSION=$(VERSION) go test -mod=readonly -v -timeout 30m -coverprofile=$(COVER_FILE) -covermode=atomic $(PACKAGES) | ||
@go tool cover -html=$(COVER_FILE) -o $(COVER_HTML_FILE) | ||
@rm $(COVER_FILE) | ||
|
||
## bench: Run the unit tests with benchmarking enabled | ||
bench: | ||
@echo Running unit tests with benchmarking... | ||
@VERSION=$(VERSION) go test -mod=readonly -v -timeout 30m -bench=. $(PACKAGES) | ||
|
||
## test: Run unit and integration tests. | ||
test: govet govulncheck test-unit | ||
|
||
.PHONY: test test-unit test-race test-cover bench | ||
|
||
|
||
############################################################################### | ||
### Build ### | ||
############################################################################### | ||
|
||
build: go.sum | ||
ifeq ($(OS),Windows_NT) | ||
go build -o build/faucet.exe ./cmd/faucet | ||
else | ||
go build -o build/faucet ./cmd/faucet | ||
endif | ||
|
||
build-linux: go.sum | ||
LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 $(MAKE) build | ||
|
||
install: go.sum | ||
go install ./cmd/faucet | ||
|
||
############################################################################### | ||
### Tools & Dependencies ### | ||
############################################################################### | ||
|
||
go-mod-cache: go.sum | ||
@echo "--> Download go modules to local cache" | ||
@go mod download | ||
|
||
go.sum: go.mod | ||
@echo "--> Ensure dependencies have not been modified" | ||
@go mod verify | ||
@go mod tidy | ||
|
||
clean: | ||
rm -rf $(BUILDDIR)/ | ||
rm -rf build/ | ||
|
||
.PHONY: go-mod-cache clean | ||
|
||
############################################################################### | ||
### Development ### | ||
############################################################################### | ||
|
||
## govet: Run go vet. | ||
govet: | ||
@echo Running go vet... | ||
@go vet $(shell go list ./...) | ||
|
||
## govulncheck: Run govulncheck | ||
govulncheck: | ||
@echo Running govulncheck... | ||
@go run golang.org/x/vuln/cmd/govulncheck ./... | ||
|
||
## format: Run gofumpt and goimports. | ||
format: | ||
@echo Formatting... | ||
@go install mvdan.cc/gofumpt | ||
@go install golang.org/x/tools/cmd/goimports | ||
@find . $(FIND_ARGS) | xargs gofumpt -w . | ||
@find . $(FIND_ARGS) | xargs goimports -w -local github.com/ignite/network | ||
|
||
## lint: Run Golang CI Lint. | ||
lint: | ||
@echo Running gocilint... | ||
@go install github.com/golangci/golangci-lint/cmd/golangci-lint | ||
@golangci-lint run --out-format=tab --issues-exit-code=0 | ||
|
||
help: Makefile | ||
@echo | ||
@echo " Choose a command run in "$(PROJECT_NAME)", or just run 'make' for install" | ||
@echo | ||
@sed -n 's/^##//p' $< | column -t -s ':' | sed -e 's/^/ /' | ||
@echo | ||
|
||
.PHONY: all $(BUILD_TARGETS) clean | ||
.PHONY: lint format govet govulncheck help |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.