-
Notifications
You must be signed in to change notification settings - Fork 782
/
Makefile
80 lines (67 loc) · 2.02 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
# Metadata about this makefile and position
MKFILE_PATH := $(lastword $(MAKEFILE_LIST))
CURRENT_DIR := $(patsubst %/,%,$(dir $(realpath $(MKFILE_PATH))))
# Tags specific for building
GOTAGS ?=
# Get the project metadata
OWNER := "hashicorp"
NAME := "consul-template"
PROJECT := $(shell go list -m | awk "/${NAME}/ {print $0}" )
GIT_COMMIT ?= $(shell git rev-parse --short HEAD || echo release)
VERSION := $(shell awk -F\" '/^[ \t]+Version/ { print $$2; exit }' "${CURRENT_DIR}/version/version.go")
PRERELEASE := $(shell awk -F\" '/^[ \t]+VersionPrerelease/ { print $$2; exit }' "${CURRENT_DIR}/version/version.go")
# Current system information
GOOS ?= $(shell go env GOOS)
GOARCH ?= $(shell go env GOARCH)
# List of ldflags
LD_FLAGS ?= \
-s -w \
-X ${PROJECT}/version.GitCommit=${GIT_COMMIT}
# for CRT build process
version:
@echo ${VERSION}${PRERELEASE}
.PHONY: version
# dev builds and installs the project locally.
dev:
@echo "==> Installing ${NAME} for ${GOOS}/${GOARCH}"
@env \
CGO_ENABLED="0" \
go install \
-ldflags "${LD_FLAGS}" \
-tags "${GOTAGS}"
.PHONY: dev
# dev docker builds
docker:
@env CGO_ENABLED="0" go build -ldflags "${LD_FLAGS}" -o $(NAME)
mkdir -p dist/linux/amd64/
cp consul-template dist/linux/amd64/
env DOCKER_BUILDKIT=1 docker build -t consul-template .
.PHONY: docker
# test runs the test suite.
test:
@echo "==> Testing ${NAME}"
@go test -count=1 -timeout=30s -parallel=20 -failfast -tags="${GOTAGS}" ./... ${TESTARGS}
.PHONY: test
# test-race runs the test suite.
test-race:
@echo "==> Testing ${NAME} (race)"
@go test -timeout=60s -race -tags="${GOTAGS}" ./... ${TESTARGS}
.PHONY: test-race
# _cleanup removes any previous binaries
clean:
@rm -rf "${CURRENT_DIR}/dist/"
@rm -f "consul-template"
.PHONY: clean
# Add/Update the "Table Of Contents" in the README.md
toc:
@./scripts/readme-toc.sh
.PHONY: toc
# noop command to get build pipeline working
dev-tree:
@true
.PHONY: dev-tree
# lint
lint:
@echo "==> Running golangci-lint"
GOWORK=off golangci-lint run --build-tags '$(GOTAGS)'
.PHONY: lint