forked from edgexfoundry/edgex-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
203 lines (158 loc) · 6.33 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#
# Copyright (c) 2018 Cavium
#
# SPDX-License-Identifier: Apache-2.0
#
.PHONY: build clean test docker run
GO=CGO_ENABLED=0 GO111MODULE=on go
GOCGO=CGO_ENABLED=1 GO111MODULE=on go
DOCKERS=docker_config_seed docker_export_client docker_export_distro docker_core_data docker_core_metadata docker_core_command docker_support_logging docker_support_notifications docker_sys_mgmt_agent docker_support_scheduler docker_security_secrets_setup docker_security_proxy_setup docker_security_secretstore_setup
.PHONY: $(DOCKERS)
MICROSERVICES=cmd/config-seed/config-seed cmd/export-client/export-client cmd/export-distro/export-distro cmd/core-metadata/core-metadata cmd/core-data/core-data cmd/core-command/core-command cmd/support-logging/support-logging cmd/support-notifications/support-notifications cmd/sys-mgmt-executor/sys-mgmt-executor cmd/sys-mgmt-agent/sys-mgmt-agent cmd/support-scheduler/support-scheduler cmd/security-secrets-setup/security-secrets-setup cmd/security-proxy-setup/security-proxy-setup cmd/security-secretstore-setup/security-secretstore-setup
.PHONY: $(MICROSERVICES)
VERSION=$(shell cat ./VERSION)
DOCKER_TAG=$(VERSION)-dev
GOFLAGS=-ldflags "-X github.com/edgexfoundry/edgex-go.Version=$(VERSION)"
GIT_SHA=$(shell git rev-parse HEAD)
ARCH=$(shell uname -m)
build: $(MICROSERVICES)
cmd/config-seed/config-seed:
$(GO) build $(GOFLAGS) -o $@ ./cmd/config-seed
cmd/core-metadata/core-metadata:
$(GO) build $(GOFLAGS) -o $@ ./cmd/core-metadata
cmd/core-data/core-data:
$(GOCGO) build $(GOFLAGS) -o $@ ./cmd/core-data
cmd/core-command/core-command:
$(GO) build $(GOFLAGS) -o $@ ./cmd/core-command
cmd/export-client/export-client:
$(GO) build $(GOFLAGS) -o $@ ./cmd/export-client
cmd/export-distro/export-distro:
$(GOCGO) build $(GOFLAGS) -o $@ ./cmd/export-distro
cmd/support-logging/support-logging:
$(GO) build $(GOFLAGS) -o $@ ./cmd/support-logging
cmd/support-notifications/support-notifications:
$(GO) build $(GOFLAGS) -o $@ ./cmd/support-notifications
cmd/sys-mgmt-executor/sys-mgmt-executor:
$(GO) build $(GOFLAGS) -o $@ ./cmd/sys-mgmt-executor
cmd/sys-mgmt-agent/sys-mgmt-agent:
$(GO) build $(GOFLAGS) -o $@ ./cmd/sys-mgmt-agent
cmd/support-scheduler/support-scheduler:
$(GO) build $(GOFLAGS) -o $@ ./cmd/support-scheduler
cmd/security-secrets-setup/security-secrets-setup:
$(GO) build $(GOFLAGS) -o ./cmd/security-secrets-setup/security-secrets-setup ./cmd/security-secrets-setup
cmd/security-proxy-setup/security-proxy-setup:
$(GO) build $(GOFLAGS) -o ./cmd/security-proxy-setup/security-proxy-setup ./cmd/security-proxy-setup
cmd/security-secretstore-setup/security-secretstore-setup:
$(GO) build $(GOFLAGS) -o ./cmd/security-secretstore-setup/security-secretstore-setup ./cmd/security-secretstore-setup
clean:
rm -f $(MICROSERVICES)
test:
GO111MODULE=on go test -coverprofile=coverage.out ./...
GO111MODULE=on go vet ./...
gofmt -l .
[ "`gofmt -l .`" = "" ]
./bin/test-go-mod-tidy.sh
./bin/test-attribution-txt.sh
run:
cd bin && ./edgex-launch.sh
run_docker:
bin/edgex-docker-launch.sh $(EDGEX_DB)
docker: $(DOCKERS)
docker_config_seed:
docker build \
-f cmd/config-seed/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-core-config-seed-go:$(GIT_SHA) \
-t edgexfoundry/docker-core-config-seed-go:$(DOCKER_TAG) \
.
docker_core_metadata:
docker build \
-f cmd/core-metadata/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-core-metadata-go:$(GIT_SHA) \
-t edgexfoundry/docker-core-metadata-go:$(DOCKER_TAG) \
.
docker_core_data:
docker build \
-f cmd/core-data/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-core-data-go:$(GIT_SHA) \
-t edgexfoundry/docker-core-data-go:$(DOCKER_TAG) \
.
docker_core_command:
docker build \
-f cmd/core-command/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-core-command-go:$(GIT_SHA) \
-t edgexfoundry/docker-core-command-go:$(DOCKER_TAG) \
.
docker_export_client:
docker build \
-f cmd/export-client/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-export-client-go:$(GIT_SHA) \
-t edgexfoundry/docker-export-client-go:$(DOCKER_TAG) \
.
docker_export_distro:
docker build \
-f cmd/export-distro/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-export-distro-go:$(GIT_SHA) \
-t edgexfoundry/docker-export-distro-go:$(DOCKER_TAG) \
.
docker_support_logging:
docker build \
-f cmd/support-logging/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-support-logging-go:$(GIT_SHA) \
-t edgexfoundry/docker-support-logging-go:$(DOCKER_TAG) \
.
docker_support_notifications:
docker build \
-f cmd/support-notifications/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-support-notifications-go:$(GIT_SHA) \
-t edgexfoundry/docker-support-notifications-go:$(DOCKER_TAG) \
.
docker_support_scheduler:
docker build \
-f cmd/support-scheduler/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-support-scheduler-go:$(GIT_SHA) \
-t edgexfoundry/docker-support-scheduler-go:$(DOCKER_TAG) \
.
docker_sys_mgmt_agent:
docker build \
-f cmd/sys-mgmt-agent/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-sys-mgmt-agent-go:$(GIT_SHA) \
-t edgexfoundry/docker-sys-mgmt-agent-go:$(DOCKER_TAG) \
.
docker_security_secrets_setup:
# TODO: split this up and rename it when security-secrets-setup is a
# different container
docker build \
-f cmd/security-secrets-setup/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-edgex-secret-store-go:$(GIT_SHA) \
-t edgexfoundry/docker-edgex-secret-store-go:$(DOCKER_TAG) \
.
docker_security_proxy_setup:
docker build \
-f cmd/security-proxy-setup/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-edgex-security-proxy-setup-go:$(GIT_SHA) \
-t edgexfoundry/docker-edgex-security-proxy-setup-go:$(DOCKER_TAG) \
.
docker_security_secretstore_setup:
docker build \
-f cmd/security-secretstore-setup/Dockerfile \
--label "git_sha=$(GIT_SHA)" \
-t edgexfoundry/docker-edgex-security-secretstore-setup-go:$(GIT_SHA) \
-t edgexfoundry/docker-edgex-security-secretstore-setup-go:$(DOCKER_TAG) \
.
raml_verify:
docker run --rm --privileged \
-v $(PWD):/raml-verification -w /raml-verification \
nexus3.edgexfoundry.org:10003/edgex-docs-builder:$(ARCH) \
/scripts/raml-verify.sh