-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·247 lines (208 loc) · 9.89 KB
/
Copy pathMakefile
File metadata and controls
executable file
·247 lines (208 loc) · 9.89 KB
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
.PHONY: all all-build all-image all-push build build-dirs fetch-deps scan test build-shell image image-name push push-name version clean image-clean bin-clean
# ===========================================================================
# Copyright (c) 2017 by General Electric Company. All rights reserved.
# The copyright to the computer software herein is the property of
# General Electric Company. The software may be used and/or copied only
# with the written permission of General Electric Company or in accordance
# with the terms and conditions stipulated in the agreement/contract
# under which the software has been supplied.
# ===========================================================================
# Build tools
#
# Targets (see each target for more information):
# build: builds binaries for specified architecture
# image: builds the docker image
# test: runs lint, unit tests etc.
# scan: runs static analysis tools
# clean: removes build artifacts and images
# push: pushes image to registry
#
# all-build: builds binaries for all target architectures
# all-images: builds the docker images for all target architectures
# all-push: pushes the images for all architectures to registry
#
###
### Customize these variables
###
# The binary to build (just the basename).
NAME := cappsd-cli
# Version to tag
VERSION := 0.1.1
# This repo's root import path (under GOPATH)
PKG := github.build.ge.com/PredixEdgeOS/container-app-service-cli
# Where to push the docker image.
REGISTRY ?= registry.gear.ge.com/predix_edge
# Which architecture to build - see $(ALL_ARCH) for options.
ARCH ?= amd64
SRC_FILES := $(shell find . -name '*.go' | grep -v '/vendor' | grep -v '/.go')
SRC_DIRS := $(shell ls -d */ | grep -v 'vendor/' | grep -v 'hack/' | grep -v 'bin/' | grep -v 'docs/')
###
### These variables should not need tweaking.
###
# Platform specific USER and proxy crud:
# On linux, run the container with the current uid, so files produced from
# within the container are owned by the current user, rather than root.
#
# On OSX, don't do anything with the container user, and let boot2docker manage
# permissions on the /Users mount that it sets up
DOCKER_USER := $(shell if [ "$$OSTYPE" != "darwin"* ]; then USER_ARG="--user=`id -u`"; fi; echo "$$USER_ARG")
PROXY_ARGS := $(shell if [ "$$http_proxy" != "" ]; then echo "-e http_proxy=$$http_proxy"; fi)
PROXY_ARGS += $(shell if [ "$$https_proxy" != "" ]; then echo " -e https_proxy=$$https_proxy"; fi)
PROXY_ARGS += $(shell if [ "$$no_proxy" != "" ]; then echo " -e no_proxy=$$no_proxy"; fi)
ALL_ARCH := amd64 arm
IMGARCH=$(ARCH)
ifeq ($(ARCH),amd64)
BASEIMAGE?=registry.gear.ge.com/predix_edge/alpine-amd64:3.4
endif
ifeq ($(ARCH),arm)
BASEIMAGE?=registry.gear.ge.com/predix_edge/alpine-arm:3.4
endif
ifeq ($(ARCH),arm64)
BASEIMAGE?=registry.gear.ge.com/predix_edge/alpine-aarch64:3.5
IMGARCH=aarch64
endif
IMAGE := $(REGISTRY)/$(NAME)-$(ARCH)
# Default target
all: build
# Builds the binary in a Docker container and copy to volume mount
build-%:
@$(MAKE) --no-print-directory ARCH=$* build
# Builds the docker image and tags it appropriately
image-%:
@$(MAKE) --no-print-directory ARCH=$* image
# Pushes the build docker image to the specified registry
push-%:
@$(MAKE) --no-print-directory ARCH=$* push
# Builds all the binaries in a Docker container and copies to volume mount
all-build: $(addprefix build-, $(ALL_ARCH))
# Builds all docker images and tags them appropriately
all-image: $(addprefix image-, $(ALL_ARCH))
# Builds and pushes all images to registry
all-push: $(addprefix push-, $(ALL_ARCH))
build: bin/$(ARCH)/$(NAME)
.builder-$(ARCH): hack/docker/Dockerfile.builder
@echo "creating builder image ... "
@sed \
-e 's|#{ARCH}|$(IMGARCH)|g' \
hack/docker/Dockerfile.builder > .builder-$(ARCH)
@bash -c "trap 'rm .builder-$(ARCH)' ERR; \
docker build \
--force-rm=true \
-t $(IMAGE):builder \
-f .builder-$(ARCH) \
$(shell echo "$(PROXY_ARGS)" | sed s/-e/--build-arg/g) \
. \
"
.go: .builder-$(ARCH) hack/tool-deps.sh
@mkdir -p bin/$(ARCH)
@mkdir -p .go/src/$(PKG) .go/pkg .go/bin .go/std/$(ARCH)
@echo "populating local .go tree ... "
@docker run \
--rm \
-t \
$(DOCKER_USER) \
$(PROXY_ARGS) \
-v $$(pwd)/.go:/go \
-v $$(pwd):/go/src/$(PKG) \
-v $$(pwd)/bin/$(ARCH):/go/bin \
-v $$(pwd)/bin/$(ARCH):/go/bin/linux_$(ARCH) \
-v $$(pwd)/.go/std/$(ARCH):/usr/local/go/pkg/linux_$(ARCH)_static \
-w /go/src/$(PKG) \
$(IMAGE):builder \
/bin/sh -c " \
./hack/tool-deps.sh \
"
bin/$(ARCH)/$(NAME): .go $(SRC_FILES) hack/build.sh
@echo "building: $@"
@echo $(DOCKER_USER)
@docker run \
--rm \
-t \
$(DOCKER_USER) \
$(PROXY_ARGS) \
-v $$(pwd)/.go:/go \
-v $$(pwd):/go/src/$(PKG) \
-v $$(pwd)/bin/$(ARCH):/go/bin \
-v $$(pwd)/bin/$(ARCH):/go/bin/linux_$(ARCH) \
-v $$(pwd)/.go/std/$(ARCH):/usr/local/go/pkg/linux_$(ARCH)_static \
-w /go/src/$(PKG) \
$(IMAGE):builder \
/bin/sh -c " \
PKG=$(PKG) \
VERSION=$(VERSION) \
ARCH=$(ARCH) \
./hack/build.sh \
"
scan: .go
@echo "running static scan checks: $(ARCH)"
@docker run \
--rm \
-t \
$(DOCKER_USER) \
$(PROXY_ARGS) \
-v $$(pwd)/.go:/go \
-v $$(pwd):/go/src/$(PKG) \
-v $$(pwd)/bin/$(ARCH):/go/bin \
-v $$(pwd)/bin/$(ARCH):/go/bin/linux_$(ARCH) \
-v $$(pwd)/.go/std/$(ARCH):/usr/local/go/pkg/linux_$(ARCH)_static \
-w /go/src/$(PKG) \
$(IMAGE):builder \
/bin/sh -c " \
./hack/scan.sh $(SRC_DIRS) \
"
test: build .go
@./hack/test/test.sh
@echo "... Tests complete! $(ARCH)"
clean-tests:
@./hack/test/test-cleanup.sh
@echo "Clean up complete!"
build-shell: .go
@echo "Entering build shell..."
@echo $(DOCKER_USER)
@docker run \
-it \
--net=host \
$(DOCKER_USER) \
$(PROXY_ARGS) \
-v $$(pwd)/.go:/go \
-v $$(pwd):/go/src/$(PKG) \
-v $$(pwd)/bin/$(ARCH):/go/bin \
-v $$(pwd)/bin/$(ARCH):/go/bin/linux_$(ARCH) \
-v $$(pwd)/.go/std/$(ARCH):/usr/local/go/pkg/linux_$(ARCH)_static \
-w /go/src/$(PKG) \
$(IMAGE):builder \
/bin/bash
DOTFILE_IMAGE = $(subst /,_,$(IMAGE))-$(VERSION)
image: .image-$(DOTFILE_IMAGE) image-name
.image-$(DOTFILE_IMAGE): bin/$(ARCH)/$(NAME) hack/docker/Dockerfile.in
@sed \
-e 's|ARG_NAME|$(NAME)|g' \
-e 's|ARG_ARCH|$(ARCH)|g' \
-e 's|ARG_FROM|$(BASEIMAGE)|g' \
hack/docker/Dockerfile.in > .dockerfile-$(ARCH)
@docker build \
$(shell echo "$(PROXY_ARGS)" | sed s/-e/--build-arg/g) \
-t $(IMAGE):$(VERSION) \
-f .dockerfile-$(ARCH) .
@docker images -q $(IMAGE):$(VERSION) > $@
image-name:
@echo "image: $(IMAGE):$(VERSION)"
push: .push-$(DOTFILE_IMAGE) push-name
.push-$(DOTFILE_IMAGE): .image-$(DOTFILE_IMAGE)
@gcloud docker push $(IMAGE):$(VERSION)
@docker images -q $(IMAGE):$(VERSION) > $@
push-name:
@echo "pushed: $(IMAGE):$(VERSION)"
version:
@echo $(VERSION)
clean: image-clean bin-clean clean-tests
image-clean:
@if [ $(shell docker ps -a | grep $(IMAGE) | wc -l) != 0 ]; then \
docker ps -a | grep $(IMAGE) | awk '{print $$1 }' | xargs docker rm -f; \
fi
@if [ $(shell docker images | grep $(IMAGE) | wc -l) != 0 ]; then \
docker images | grep $(IMAGE) | awk '{print $$3}' | xargs docker rmi -f || true; \
fi
rm -rf .image-* .dockerfile-* .push-* .builder-*
bin-clean:
rm -rf .go bin