-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
113 lines (92 loc) · 2.85 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
101
102
103
104
105
106
107
108
109
110
111
112
113
# Install tools locally instead of in $HOME/go/bin.
export GOBIN := $(CURDIR)/bin
export GOBUILD := go build
export PATH := $(GOBIN):$(PATH)
export RELEASE_VERSION ?= $(shell git describe --always)
export DOCKER_REGISTRY ?= registry.nordix.org
export DOCKER_NAMESPACE ?= eiffel
export DEPLOY ?= etos-sse
PROGRAMS = sse logarea iut executionspace
COMPILEDAEMON = $(GOBIN)/CompileDaemon
GIT = git
GOLANGCI_LINT = $(GOBIN)/golangci-lint
GOLANGCI_LINT_VERSION = v1.52.2
# Generates a rule for building a single binary from cmd/$1.
#
# $1: Name of the program
define build-binary
.PHONY: $(strip $(1))
$(strip $(1)):
$$(GOBUILD) -ldflags="-w -s -buildid=" -trimpath -o bin/$(strip $(1)) ./cmd/$(strip $(1))
endef
# Generates a rule named $(program_name)-docker to to build the named program
# and copy the locally compiled binary into a Docker image. The image will be
# tagged with the name of the program.
#
# $1: Name of the program
define build-docker-image
.PHONY: $(strip $(1))-docker
# Including the parameter name!
EXTRA_DOCKER_ARGS=
export EXTRA_DOCKER_ARGS
$(strip $(1))-docker: $(strip $(1))
docker build . \
$(EXTRA_DOCKER_ARGS) \
-f deploy/etos-$(strip $(1))/Dockerfile \
-t $(DOCKER_REGISTRY)/$(DOCKER_NAMESPACE)/etos-$(strip $(1)):$(RELEASE_VERSION)
endef
# Generates a rule named $(program_name)-docker-push to push
# a local Docker image to a remote registry.
#
# $1: Name of the program
define push-docker-image
.PHONY: $(strip $(1))-docker-push
$(strip $(1))-docker-push:
echo docker push $(DOCKER_REGISTRY)/$(DOCKER_NAMESPACE)/$(strip $(1))_provider:$(RELEASE_VERSION)
endef
.PHONY: all
all: test $(PROGRAMS)
.PHONY: clean
clean:
$(RM) $(GOBIN)/*
docker compose --project-directory . -f deploy/$(DEPLOY)/docker-compose.yml rm || true
.PHONY: check
check: staticcheck test
.PHONY: staticcheck
staticcheck: $(GOLANGCI_LINT)
$(GOLANGCI_LINT) run
.PHONY: test
test:
go test -cover -timeout 30s -race $(shell go list ./... | grep -v "etos-api/test")
# Start a development docker with a database that restarts on file changes.
.PHONY: start
start: $(COMPILEDAEMON)
docker compose --project-directory . -f deploy/$(DEPLOY)/docker-compose.yml up
.PHONY: stop
stop:
docker compose --project-directory . -f deploy/$(DEPLOY)/docker-compose.yml down
.PHONY: tidy
tidy:
go mod tidy
.PHONY: check-dirty
check-dirty:
$(GIT) diff --exit-code HEAD
.PHONY: gen
gen:
go generate ./...
# Setup the dynamic commands
#
$(foreach prog,$(PROGRAMS), \
$(eval $(call build-binary,$(prog))) \
$(eval $(call build-docker-image,$(prog))) \
$(eval $(call push-docker-image,$(prog))) \
)
# Build dependencies
$(COMPILEDAEMON):
mkdir -p $(dir $@)
go install github.com/githubnemo/[email protected]
$(GOLANGCI_LINT):
mkdir -p $(dir $@)
curl -sfL \
https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s -- -b $(GOBIN) $(GOLANGCI_LINT_VERSION)