-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
249 lines (198 loc) · 8.4 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
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
248
249
#
# Makefile for juju-core.
#
ifndef GOPATH
$(warning You need to set up a GOPATH. See the README file.)
endif
PROJECT := github.com/juju/juju
PROJECT_DIR := $(shell go list -e -f '{{.Dir}}' $(PROJECT))
PROJECT_PACKAGES := $(shell go list $(PROJECT)/... | grep -v /vendor/ | grep -v /acceptancetests/ | grep -v mocks)
# Allow the tests to take longer on arm platforms.
ifeq ($(shell uname -p | sed -E 's/.*(armel|armhf|aarch64|ppc64le|ppc64|s390x).*/golang/'), golang)
TEST_TIMEOUT := 5400s
else
TEST_TIMEOUT := 1800s
endif
# Limit concurrency on s390x.
ifeq ($(shell uname -p | sed -E 's/.*(s390x).*/golang/'), golang)
TEST_ARGS := -p 4
else
TEST_ARGS :=
endif
# Enable verbose testing for reporting.
ifeq ($(VERBOSE_CHECK), 1)
CHECK_ARGS = -v $(TEST_ARGS)
else
CHECK_ARGS = $(TEST_ARGS)
endif
GIT_COMMIT ?= $(shell git -C $(PROJECT_DIR) rev-parse HEAD 2>/dev/null)
# If .git directory is missing, we are building out of an archive, otherwise report
# if the tree that is checked out is dirty (modified) or clean.
GIT_TREE_STATE = $(if $(shell git -C $(PROJECT_DIR) rev-parse --is-inside-work-tree 2>/dev/null | grep -e 'true'),$(if $(shell git -C $(PROJECT_DIR) status --porcelain),dirty,clean),archive)
# Build tags passed to go install/build.
# Example: BUILD_TAGS="minimal provider_kubernetes"
BUILD_TAGS ?=
# Build number passed in must be a monotonic int representing
# the build.
JUJU_BUILD_NUMBER ?=
# Compile with debug flags if requested.
ifeq ($(DEBUG_JUJU), 1)
COMPILE_FLAGS = -gcflags "all=-N -l"
LINK_FLAGS = -ldflags "-X $(PROJECT)/version.GitCommit=$(GIT_COMMIT) -X $(PROJECT)/version.GitTreeState=$(GIT_TREE_STATE) -X $(PROJECT)/version.build=$(JUJU_BUILD_NUMBER)"
else
COMPILE_FLAGS =
LINK_FLAGS = -ldflags "-s -w -X $(PROJECT)/version.GitCommit=$(GIT_COMMIT) -X $(PROJECT)/version.GitTreeState=$(GIT_TREE_STATE) -X $(PROJECT)/version.build=$(JUJU_BUILD_NUMBER)"
endif
define DEPENDENCIES
ca-certificates
bzip2
distro-info-data
git
zip
endef
default: build
# Start of GOPATH-dependent targets. Some targets only make sense -
# and will only work - when this tree is found on the GOPATH.
ifeq ($(CURDIR),$(PROJECT_DIR))
ifeq ($(JUJU_SKIP_DEP),true)
dep:
@echo "skipping dep"
else
$(GOPATH)/bin/dep:
go get -u github.com/golang/dep/cmd/dep
# populate vendor/ from Gopkg.lock without updating it first (lock file is the single source of truth for machine).
dep: $(GOPATH)/bin/dep
$(GOPATH)/bin/dep ensure -vendor-only $(verbose)
endif
build: dep rebuild-schema go-build
release-build: dep go-build
release-install: dep go-install
pre-check:
@echo running pre-test checks
@INCLUDE_GOLINTERS=1 $(PROJECT_DIR)/scripts/verify.bash
check: dep pre-check run-tests
test: dep run-tests
# Can't make the length of the TMP dir too long or it hits socket name length issues.
run-tests:
$(eval TMP := $(shell mktemp -d jj-XXX --tmpdir))
@echo 'go test --tags "$(BUILD_TAGS)" $(CHECK_ARGS) -test.timeout=$(TEST_TIMEOUT) $$PROJECT_PACKAGES -check.v'
@TMPDIR=$(TMP) go test --tags "$(BUILD_TAGS)" $(CHECK_ARGS) -test.timeout=$(TEST_TIMEOUT) $(PROJECT_PACKAGES) -check.v
@rm -r $(TMP)
install: dep rebuild-schema go-install
clean:
go clean -n -r --cache --testcache $(PROJECT_PACKAGES)
go-install:
@echo 'go install -tags "$(BUILD_TAGS)" $(COMPILE_FLAGS) $(LINK_FLAGS) -v $$PROJECT_PACKAGES'
@go install -tags "$(BUILD_TAGS)" $(COMPILE_FLAGS) $(LINK_FLAGS) -v $(PROJECT_PACKAGES)
go-build:
@go build -tags "$(BUILD_TAGS)" $(COMPILE_FLAGS) $(PROJECT_PACKAGES)
else # --------------------------------
build:
$(error Cannot $@; $(CURDIR) is not on GOPATH)
check:
$(error Cannot $@; $(CURDIR) is not on GOPATH)
install:
$(error Cannot $@; $(CURDIR) is not on GOPATH)
clean:
$(error Cannot $@; $(CURDIR) is not on GOPATH)
endif
# End of GOPATH-dependent targets.
# Reformat source files.
format:
gofmt -w -l .
# Reformat and simplify source files.
simplify:
gofmt -w -l -s .
# update Gopkg.lock (if needed), but do not update `vendor/`.
rebuild-dependencies:
dep ensure -v -no-vendor $(dep-update)
rebuild-schema:
@echo "Generating facade schema..."
ifdef SCHEMA_PATH
@go run ./generate/schemagen/schemagen.go "$(SCHEMA_PATH)"
else
@go run ./generate/schemagen/schemagen.go \
./apiserver/facades/schema.json
endif
# Install packages required to develop Juju and run tests. The stable
# PPA includes the required mongodb-server binaries.
install-snap-dependencies:
@echo Installing go-1.12 snap
@sudo snap install go --channel=1.12/stable --classic
install-mongo-dependencies:
@echo Adding juju PPA for mongodb
@sudo apt-add-repository --yes ppa:juju/stable
@sudo apt-get update
@echo Installing dependencies
@sudo apt-get --yes install \
$(strip $(DEPENDENCIES)) \
$(shell apt-cache madison mongodb-server-core juju-mongodb3.2 juju-mongodb mongodb-server | head -1 | cut -d '|' -f1)
install-dependencies: install-snap-dependencies install-mongo-dependencies
@echo "Installing dependencies"
# Install bash_completion
install-etc:
@echo Installing bash completion
@sudo install -o root -g root -m 644 etc/bash_completion.d/juju /usr/share/bash-completion/completions
@sudo install -o root -g root -m 644 etc/bash_completion.d/juju-version /usr/share/bash-completion/completions
setup-lxd:
ifeq ($(shell ifconfig lxdbr0 2>&1 | grep -q "inet addr" && echo true),true)
@echo IPv4 networking is already setup for LXD.
@echo run "sudo scripts/setup-lxd.sh" to reconfigure IPv4 networking
else
@echo Setting up IPv4 networking for LXD
@sudo scripts/setup-lxd.sh || true
endif
GOCHECK_COUNT="$(shell go list -f '{{join .Deps "\n"}}' github.com/juju/juju/... | grep -c "gopkg.in/check.v*")"
check-deps:
@echo "$(GOCHECK_COUNT) instances of gocheck not in test code"
# CAAS related targets
DOCKER_USERNAME ?= jujusolutions
JUJUD_STAGING_DIR ?= /tmp/jujud-operator
JUJUD_BIN_DIR ?= ${GOPATH}/bin
OPERATOR_IMAGE_BUILD_SRC ?= true
# By default the image tag is the full version number, including the build number.
OPERATOR_IMAGE_TAG ?= $(shell ${JUJUD_BIN_DIR}/jujud version | grep -E -o "^[[:digit:]]{1,9}\.[[:digit:]]{1,9}(\.|-[[:alpha:]]+)[[:digit:]]{1,9}(\.[[:digit:]]{1,9})?")
# Legacy tags never have a build number.
OPERATOR_IMAGE_TAG_LEGACY ?= $(shell ${JUJUD_BIN_DIR}/jujud version | grep -E -o "^[[:digit:]]{1,9}\.[[:digit:]]{1,9}(\.|-[[:alpha:]]+)[[:digit:]]{1,9}")
OPERATOR_IMAGE_PATH = ${DOCKER_USERNAME}/jujud-operator:${OPERATOR_IMAGE_TAG}
OPERATOR_IMAGE_PATH_LEGACY = ${DOCKER_USERNAME}/jujud-operator:${OPERATOR_IMAGE_TAG_LEGACY}
operator-check-build:
ifeq ($(OPERATOR_IMAGE_BUILD_SRC),true)
make install
else
@echo "skipping to build jujud bin, use existing one at ${JUJUD_BIN_DIR}/jujud."
endif
operator-image: operator-check-build
rm -rf ${JUJUD_STAGING_DIR}
mkdir ${JUJUD_STAGING_DIR}
cp ${JUJUD_BIN_DIR}/jujud ${JUJUD_STAGING_DIR}
cp caas/jujud-operator-dockerfile ${JUJUD_STAGING_DIR}
cp caas/jujud-operator-requirements.txt ${JUJUD_STAGING_DIR}
docker build -f ${JUJUD_STAGING_DIR}/jujud-operator-dockerfile -t ${OPERATOR_IMAGE_PATH} ${JUJUD_STAGING_DIR}
ifneq ($(OPERATOR_IMAGE_PATH),$(OPERATOR_IMAGE_PATH_LEGACY))
docker tag ${OPERATOR_IMAGE_PATH} ${OPERATOR_IMAGE_PATH_LEGACY}
endif
rm -rf ${JUJUD_STAGING_DIR}
push-operator-image: operator-image
docker push ${OPERATOR_IMAGE_PATH}
ifneq ($(OPERATOR_IMAGE_PATH),$(OPERATOR_IMAGE_PATH_LEGACY))
docker push ${OPERATOR_IMAGE_PATH_LEGACY}
endif
microk8s-operator-update: operator-image
docker save ${OPERATOR_IMAGE_PATH} | microk8s.ctr --namespace k8s.io image import -
check-k8s-model:
@:$(if $(value JUJU_K8S_MODEL),, $(error Undefined JUJU_K8S_MODEL))
@juju show-model ${JUJU_K8S_MODEL} > /dev/null
local-operator-update: check-k8s-model operator-image
$(eval kubeworkers != juju status -m ${JUJU_K8S_MODEL} kubernetes-worker --format json | jq -c '.machines | keys' | tr -c '[:digit:]' ' ' 2>&1)
docker save ${OPERATOR_IMAGE_PATH} | gzip > /tmp/jujud-operator-image.tar.gz
$(foreach wm,$(kubeworkers), juju scp -m ${JUJU_K8S_MODEL} /tmp/jujud-operator-image.tar.gz $(wm):/tmp/jujud-operator-image.tar.gz ; )
$(foreach wm,$(kubeworkers), juju ssh -m ${JUJU_K8S_MODEL} $(wm) -- "zcat /tmp/jujud-operator-image.tar.gz | docker load" ; )
STATIC_ANALYSIS_JOB ?=
static-analysis:
@cd tests && ./main.sh static_analysis ${STATIC_ANALYSIS_JOB}
.PHONY: build check install release-install release-build go-build go-install
.PHONY: clean format simplify test run-tests
.PHONY: install-dependencies
.PHONY: rebuild-dependencies
.PHONY: dep check-deps