iperf3exporter/Makefile
Marvin Preuss 2343c9588a
Some checks failed
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is failing
first commit
2021-10-20 10:08:56 +02:00

48 lines
994 B
Makefile

.PHONY: build
build:
goreleaser build --rm-dist --snapshot
.PHONY: release
release:
goreleaser release --rm-dist --snapshot --skip-publish
.PHONY: generate
generate:
go generate
.PHONY: lint
lint:
golangci-lint run --enable-all --disable=exhaustivestruct,godox
.PHONY: test
test:
go test -v -race -cover -coverprofile=coverage.out -tags=integration ./... -timeout=120m
.PHONY: coverage
coverage: test
go tool cover -html=coverage.out
.PHONY: tidy
tidy:
go mod tidy
go mod vendor
.PHONY: install-tools
install-tools:
go list -f '{{range .Imports}}{{.}} {{end}}' tools/tools.go | xargs go install -v
.PHONY: install-goreleaser
install-goreleaser:
go install -v github.com/goreleaser/goreleaser
.PHONY: install-golangci-lint
install-golangci-lint:
go install -v github.com/golangci/golangci-lint/cmd/golangci-lint
.PHONY: run-prometheus
run-prometheus:
docker run --rm -ti \
-v $(PWD)/test/prometheus.yml:/etc/prometheus/prometheus.yml \
-p 9090:9090 \
prom/prometheus