forked from Azure/aks-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
193 lines (158 loc) · 5.13 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
TARGETS = darwin/amd64 linux/amd64 windows/amd64
DIST_DIRS = find * -type d -exec
.NOTPARALLEL:
.PHONY: bootstrap build test test_fmt validate-copyright-headers fmt lint ci devenv
ifdef DEBUG
GOFLAGS := -gcflags="-N -l"
else
GOFLAGS :=
endif
# go option
GO ?= go
TAGS :=
LDFLAGS :=
BINDIR := $(CURDIR)/bin
PROJECT := aks-engine
VERSION ?= $(shell git rev-parse HEAD)
VERSION_SHORT ?= $(shell git rev-parse --short HEAD)
GITTAG := $(shell git describe --exact-match --tags $(shell git log -n1 --pretty='%h') 2> /dev/null)
ifeq ($(GITTAG),)
GITTAG := $(VERSION_SHORT)
endif
REPO_PATH := github.com/Azure/$(PROJECT)
DEV_ENV_IMAGE := quay.io/deis/go-dev:v1.22.3
DEV_ENV_WORK_DIR := /go/src/$(REPO_PATH)
DEV_ENV_OPTS := --rm -v $(CURDIR):$(DEV_ENV_WORK_DIR) -w $(DEV_ENV_WORK_DIR) $(DEV_ENV_VARS)
DEV_ENV_CMD := docker run $(DEV_ENV_OPTS) $(DEV_ENV_IMAGE)
DEV_ENV_CMD_IT := docker run -it $(DEV_ENV_OPTS) $(DEV_ENV_IMAGE)
DEV_CMD_RUN := docker run $(DEV_ENV_OPTS)
ifdef DEBUG
LDFLAGS := -X main.version=$(VERSION)
else
LDFLAGS := -s -X main.version=$(VERSION)
endif
BINARY_DEST_DIR ?= bin
ifeq ($(OS),Windows_NT)
EXTENSION = .exe
SHELL = cmd.exe
CHECK = where.exe
else
EXTENSION =
SHELL = bash
CHECK = which
endif
all: build
.PHONY: dev
dev:
$(DEV_ENV_CMD_IT) bash
.PHONY: validate-dependencies
validate-dependencies: bootstrap
@./scripts/validate-dependencies.sh
.PHONY: validate-copyright-headers
validate-copyright-headers:
@./scripts/validate-copyright-header.sh
.PHONY: validate-go
validate-go:
@./scripts/validate-go.sh
.PHONY: validate-shell
validate-shell:
@./scripts/validate-shell.sh
.PHONY: generate
generate: bootstrap
go generate $(GOFLAGS) -v ./...
.PHONY: generate-azure-constants
generate-azure-constants:
python pkg/helpers/generate_azure_constants.py
.PHONY: build
build: validate-dependencies generate
$(GO) build $(GOFLAGS) -ldflags '$(LDFLAGS)' -o $(BINDIR)/$(PROJECT)$(EXTENSION) $(REPO_PATH)
$(GO) build $(GOFLAGS) -o $(BINDIR)/aks-engine-test$(EXTENSION) $(REPO_PATH)/test/aks-engine-test
build-binary: generate
go build $(GOFLAGS) -v -ldflags "$(LDFLAGS)" -o $(BINARY_DEST_DIR)/aks-engine .
# usage: make clean build-cross dist VERSION=v0.4.0
.PHONY: build-cross
build-cross: build
build-cross: LDFLAGS += -extldflags "-static"
build-cross:
CGO_ENABLED=0 gox -output="_dist/aks-engine-$(GITTAG)-{{.OS}}-{{.Arch}}/{{.Dir}}" -osarch='$(TARGETS)' $(GOFLAGS) -tags '$(TAGS)' -ldflags '$(LDFLAGS)'
.PHONY: build-windows-k8s
build-windows-k8s:
./scripts/build-windows-k8s.sh -v $(K8S_VERSION) -p $(PATCH_VERSION)
.PHONY: dist
dist: build-cross compress-binaries
( \
cd _dist && \
$(DIST_DIRS) cp ../LICENSE {} \; && \
$(DIST_DIRS) cp ../README.md {} \; && \
$(DIST_DIRS) tar -zcf {}.tar.gz {} \; && \
$(DIST_DIRS) zip -r {}.zip {} \; \
)
.PHONY: compress-binaries
compress-binaries:
@which upx || (echo "Please install the upx executable packer tool. See https://upx.github.io/" && exit 1)
find _dist -type f \( -name "aks-engine" -o -name "aks-engine.exe" \) -exec upx -9 {} +
.PHONY: checksum
checksum:
for f in _dist/*.{gz,zip} ; do \
shasum -a 256 "$${f}" | awk '{print $$1}' > "$${f}.sha256" ; \
done
.PHONY: build-container
build-container:
docker build --no-cache --build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
--build-arg AKSENGINE_VERSION="$(VERSION)" -t microsoft/aks-engine:$(VERSION) \
--file ./releases/Dockerfile.linux ./releases || \
echo 'This target works only for published releases. For example, "VERSION=0.32.0 make build-container".'
.PHONY: clean
clean:
@rm -rf $(BINDIR) ./_dist ./pkg/helpers/unit_tests
GIT_BASEDIR = $(shell git rev-parse --show-toplevel 2>/dev/null)
ifneq ($(GIT_BASEDIR),)
LDFLAGS += -X github.com/Azure/aks-engine/pkg/test.JUnitOutDir=$(GIT_BASEDIR)/test/junit
endif
test: generate
ginkgo -skipPackage test/e2e/dcos,test/e2e/kubernetes -failFast -r .
.PHONY: test-style
test-style: validate-go validate-shell validate-copyright-headers
.PHONY: ensure-generated
ensure-generated:
@echo "==> Checking generated files <=="
@scripts/ensure-generated.sh
.PHONY: test-e2e
test-e2e:
@test/e2e.sh
HAS_DEP := $(shell $(CHECK) dep)
HAS_GOX := $(shell $(CHECK) gox)
HAS_GIT := $(shell $(CHECK) git)
HAS_GOLANGCI := $(shell $(CHECK) golangci-lint)
HAS_GINKGO := $(shell $(CHECK) ginkgo)
.PHONY: bootstrap
bootstrap:
ifndef HAS_DEP
go get -u github.com/golang/dep/cmd/dep
endif
ifndef HAS_GOX
go get -u github.com/mitchellh/gox
endif
go install ./vendor/github.com/go-bindata/go-bindata/...
ifndef HAS_GIT
$(error You must install Git)
endif
ifndef HAS_GOLANGCI
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(GOPATH)/bin
endif
ifndef HAS_GINKGO
go get -u github.com/onsi/ginkgo/ginkgo
endif
build-vendor:
$(DEV_ENV_CMD) dep ensure
rm -rf vendor/github.com/docker/distribution/contrib/docker-integration/generated_certs.d
ci: bootstrap test-style build test lint
./scripts/coverage.sh --coveralls
.PHONY: coverage
coverage:
@scripts/ginkgo.coverage.sh --codecov
devenv:
./scripts/devenv.sh
include versioning.mk
include test.mk
include packer.mk