-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
70 lines (54 loc) · 1.52 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
SHELL := /usr/bin/env bash
## https://www.gnu.org/software/make/manual/html_node/Parallel-Disable.html
.NOTPARALLEL:
include $(CURDIR)/scripts/go.mk
include $(CURDIR)/scripts/docker.mk
include $(CURDIR)/scripts/tools.mk
.DEFAULT_GOAL=default
.PHONY: default
default: checks build
# man git-clean
.PHONY: git-reset
git-reset:
git reset --hard
git clean -fd
.PHONY: env
env:
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Module \e[0m \e[0;90m<<<\e[0m"
@echo "$(MODULE)"
@echo ""
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Go env \e[0m \e[0;90m<<<\e[0m"
go env
@echo ""
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Packages \e[0m \e[0;90m<<<\e[0m"
$(GO_PACKAGES)
@echo ""
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Folders \e[0m \e[0;90m<<<\e[0m"
$(GO_FOLDERS)
@echo ""
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Files \e[0m \e[0;90m<<<\e[0m"
$(GO_FILES)
@echo ""
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Tools \e[0m \e[0;90m<<<\e[0m"
@echo '$(TOOLS_BIN)'
@echo ""
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Path \e[0m \e[0;90m<<<\e[0m"
@echo "$${PATH}" | tr ':' '\n'
@echo ""
@echo -e "\e[0;90m>>>\e[0m \e[0;94m Shell \e[0m \e[0;90m<<<\e[0m"
@echo "SHELL=$${SHELL}"
@echo "BASH=$${BASH}"
@echo "BASH_VERSION=$${BASH_VERSION}"
@echo "BASH_VERSINFO=$${BASH_VERSINFO}"
@echo ""
.PHONY: checks
checks: vet staticcheck gofumpt goimports golangci-lint-github-actions
.PHONY: ci-gen-n-format
ci-gen-n-format: goimports gofumpt
./scripts/git-check-dirty
.PHONY: ci-mod
ci-mod: mod
./scripts/git-check-dirty
.PHONY: ci-sh
ci-sh: shfmt shellcheck
@./scripts/git-check-dirty