-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
100 lines (78 loc) · 2.83 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
98
99
100
PROJECT_ID := go-tools
PROJECT_NAME := Go Tools
PROJECT_REPO := github.com/remerge/$(PROJECT_ID)
# Provide local development fallbacks if there are no CI variables
DEV_WHOAMI := $(shell whoami)
DEV_COMMIT := dev.$(DEV_WHOAMI).$(shell git rev-parse --short HEAD)
# Set CI variables from GitHub Actions workflow run
CI_COMMIT ?= $(or $(GITHUB_SHA), $(DEV_COMMIT))
CI_REPO ?= $(or $(GITHUB_REPOSITORY), $(PROJECT_REPO))
CI_NUM ?= $(or $(GITHUB_RUN_ID), $(DEV_WHOAMI))
# Base URL of our Google Cloud Artifact Registry for Docker images being
# deployed as Nomad service jobs by GitHub Actions workflows or local divert
SERVICES_ARTIFACT_REGISTRY := europe-west4-docker.pkg.dev/artifact-registry-ff9b/services/
# Use bash instead of sh as the shell to run commands
# https://www.gnu.org/software/make/manual/html_node/Choosing-the-Shell.html
SHELL = bash
# Show auto-generated help text when invoking make without a target
# https://www.gnu.org/software/make/manual/html_node/Special-Variables.html
.DEFAULT_GOAL := help
.PHONY: help
help: ## generate help text from Makefile comments
@grep -hE '^[a-zA-Z_0-9%-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
# https://www.gnu.org/software/make/manual/html_node/Double_002dColon.html
.PHONY: install
install:: ## prepare environment and install dependencies
@:
.PHONY: update
update:: ## update environment and dependencies
@:
.PHONY: generate
generate:: ## generate documentation, configuration, schemas, etc
@:
.PHONY: check
check:: ## run formatters and linters
@:
.PHONY: test
test:: ## run unit and integration tests
@:
.PHONY: build
build:: ## run build steps and create artifact
@:
.PHONY: clean
clean:: ## remove build artifacts and caches
@:
.PHONY: reset
reset: ## cleanup and reset repository to remote state
ifeq ($(FORCE),1)
git reset --hard @{upstream}
git clean -fdx
else
@echo -e "\u001b[41mThis is a dangerous operation – use \`make reset FORCE=1' to execute\u001b[0m"
@echo "Would execute \`git reset --hard @{upstream}'"
@echo "Would execute \`git clean -fdx'"
@git clean -ndx
endif
## copier
.PHONY: copier-copy
copier-copy: ## copy template without merging updates
copier recopy$(if $(FORCE), -f,)$(if $(REF), -r $(REF),)
.PHONY: copier-update
copier-update: ## update project from copier template
copier update$(if $(FORCE), -f,)$(if $(REF), -r $(REF),)
update:: copier-update
## pre-commit
.PHONY: pre-commit-install
pre-commit-install: ## install pre-commit hook
pre-commit install -t pre-commit -t prepare-commit-msg -t commit-msg
.PHONY: pre-commit-check
pre-commit-check: ## run pre commit hooks
pre-commit run --all-files
check:: pre-commit-check
.PHONY: pre-commit-clean
pre-commit-clean: ## remove pre-commit and cached repositories
pre-commit uninstall
pre-commit clean
clean:: pre-commit-clean
-include *.mk