forked from mvisonneau/gitlab-ci-pipelines-exporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
97 lines (80 loc) · 3.32 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
NAME := gitlab-ci-pipelines-exporter
FILES := $(shell git ls-files */*.go)
COVERAGE_FILE := coverage.out
REPOSITORY := mvisonneau/$(NAME)
.DEFAULT_GOAL := help
.PHONY: fmt
fmt: ## Format source code
go run mvdan.cc/[email protected] -w $(shell git ls-files **/*.go)
go run github.com/daixiang0/[email protected] write -s standard -s default -s "prefix(github.com/mvisonneau)" .
.PHONY: lint
lint: ## Run all lint related tests upon the codebase
go run github.com/golangci/golangci-lint/cmd/[email protected] run -v --fast
.PHONY: test
test: ## Run the tests against the codebase
@rm -rf $(COVERAGE_FILE)
go test -v -count=1 -race ./... -coverprofile=$(COVERAGE_FILE)
@go tool cover -func $(COVERAGE_FILE) | awk '/^total/ {print "coverage: " $$3}'
.PHONY: coverage
coverage: ## Prints coverage report
go tool cover -func $(COVERAGE_FILE)
.PHONY: install
install: ## Build and install locally the binary (dev purpose)
go install ./cmd/$(NAME)
.PHONY: build
build: ## Build the binaries using local GOOS
go build ./cmd/$(NAME)
.PHONY: release
release: ## Build & release the binaries (stable)
git tag -d edge
goreleaser release --clean
find dist -type f -name "*.snap" -exec snapcraft upload --release stable,edge '{}' \;
.PHONY: protoc
protoc: ## Generate golang from .proto files
@command -v protoc 2>&1 >/dev/null || (echo "protoc needs to be available in PATH: https://github.com/protocolbuffers/protobuf/releases"; false)
@command -v protoc-gen-go 2>&1 >/dev/null || go install google.golang.org/grpc/cmd/[email protected]
protoc \
--go_out=. --go_opt=paths=source_relative \
--go-grpc_out=. --go-grpc_opt=paths=source_relative \
pkg/monitor/protobuf/monitor.proto
.PHONY: prerelease
prerelease: ## Build & prerelease the binaries (edge)
@\
REPOSITORY=$(REPOSITORY) \
NAME=$(NAME) \
GITHUB_TOKEN=$(GITHUB_TOKEN) \
.github/prerelease.sh
.PHONY: clean
clean: ## Remove binary if it exists
rm -f $(NAME)
.PHONY: coverage-html
coverage-html: ## Generates coverage report and displays it in the browser
go tool cover -html=coverage.out
.PHONY: dev-env
dev-env: ## Build a local development environment using Docker
@docker run -it --rm \
-v $(shell pwd):/go/src/github.com/mvisonneau/$(NAME) \
-w /go/src/github.com/mvisonneau/$(NAME) \
-p 8080:8080 \
golang:1.20 \
/bin/bash -c 'make setup; make install; bash'
.PHONY: is-git-dirty
is-git-dirty: ## Tests if git is in a dirty state
@git status --porcelain
@test $(shell git status --porcelain | grep -c .) -eq 0
.PHONY: man-pages
man-pages: ## Generates man pages
rm -rf helpers/manpages
mkdir -p helpers/manpages
go run ./cmd/tools/man | gzip -c -9 >helpers/manpages/$(NAME).1.gz
.PHONY: autocomplete-scripts
autocomplete-scripts: ## Download CLI autocompletion scripts
rm -rf helpers/autocomplete
mkdir -p helpers/autocomplete
curl -sL https://raw.githubusercontent.com/urfave/cli/v2.5.0/autocomplete/bash_autocomplete > helpers/autocomplete/bash
curl -sL https://raw.githubusercontent.com/urfave/cli/v2.5.0/autocomplete/zsh_autocomplete > helpers/autocomplete/zsh
.PHONY: all
all: lint test build coverage ## Test, builds and ship package for all supported platforms
.PHONY: help
help: ## Displays this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'