代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/KubeEdge_old1 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
DESTDIR?=
USR_DIR?=/usr/local
INSTALL_DIR?=${DESTDIR}${USR_DIR}
INSTALL_BIN_DIR?=${INSTALL_DIR}/bin
GOPATH?=$(shell go env GOPATH)
# make all builds both cloud and edge binaries
BINARIES=cloudcore \
admission \
edgecore \
edgesite-agent \
edgesite-server \
keadm \
csidriver
COMPONENTS=cloud \
edge
.EXPORT_ALL_VARIABLES:
OUT_DIR ?= _output/local
define ALL_HELP_INFO
# Build code.
#
# Args:
# WHAT: binary names to build. support: $(BINARIES)
# the build will produce executable files under $(OUT_DIR)
# If not specified, "everything" will be built.
#
# Example:
# make
# make all
# make all HELP=y
# make all WHAT=cloudcore
# make all WHAT=cloudcore GOLDFLAGS="" GOGCFLAGS="-N -l"
# Note: Specify GOLDFLAGS as an empty string for building unstripped binaries, specify GOGCFLAGS
# to "-N -l" to disable optimizations and inlining, this will be helpful when you want to
# use the debugging tools like delve. When GOLDFLAGS is unspecified, it defaults to "-s -w" which strips
# debug information, see https://golang.org/cmd/link for other flags.
endef
.PHONY: all
ifeq ($(HELP),y)
all: clean
@echo "$$ALL_HELP_INFO"
else
all: verify-golang
KUBEEDGE_OUTPUT_SUBPATH=$(OUT_DIR) hack/make-rules/build.sh $(WHAT)
endif
define VERIFY_HELP_INFO
# verify golang,vendor and codegen
#
# Example:
# make verify
endef
.PHONY: verify
ifeq ($(HELP),y)
verify:
@echo "$$VERIFY_HELP_INFO"
else
verify:verify-golang verify-vendor verify-codegen verify-vendor-licenses
endif
.PHONY: verify-golang
verify-golang:
hack/verify-golang.sh
.PHONY: verify-vendor
verify-vendor:
hack/verify-vendor.sh
.PHONY: verify-codegen
verify-codegen:
cloud/hack/verify-codegen.sh
.PHONY: verify-vendor-licenses
verify-vendor-licenses:
hack/verify-vendor-licenses.sh
define TEST_HELP_INFO
# run golang test case.
#
# Args:
# WHAT: Component names to be testd. support: $(COMPONENTS)
# If not specified, "everything" will be tested.
# PROFILE: Generate profile named as "coverage.out"
#
# Example:
# make test
# make test HELP=y
# make test PROFILE=y
# make test WHAT=cloud
endef
.PHONY: test
ifeq ($(HELP),y)
test:
@echo "$$TEST_HELP_INFO"
else ifeq ($(PROFILE),y)
test: clean
PROFILE=coverage.out hack/make-rules/test.sh $(WHAT)
else
test: clean
hack/make-rules/test.sh $(WHAT)
endif
define LINT_HELP_INFO
# run golang lint check.
#
# Example:
# make lint
# make lint HELP=y
endef
.PHONY: lint
ifeq ($(HELP),y)
lint:
@echo "$$LINT_HELP_INFO"
else
lint:
hack/make-rules/lint.sh
endif
INTEGRATION_TEST_COMPONENTS=edge
define INTEGRATION_TEST_HELP_INFO
# run integration test.
#
# Args:
# WHAT: Component names to be lint check. support: $(INTEGRATION_TEST_COMPONENTS)
# If not specified, "everything" will be integration check.
#
# Example:
# make integrationtest
# make integrationtest HELP=y
endef
.PHONY: integrationtest
ifeq ($(HELP),y)
integrationtest:
@echo "$$INTEGRATION_TEST_HELP_INFO"
else
integrationtest:
hack/make-rules/build.sh edgecore
edge/test/integration/scripts/execute.sh
endif
CROSSBUILD_COMPONENTS=edgecore
GOARM_VALUES=GOARM7 \
GOARM8
define CROSSBUILD_HELP_INFO
# cross build components.
#
# Args:
# WHAT: Component names to be lint check. support: $(CROSSBUILD_COMPONENTS)
# If not specified, "everything" will be cross build.
#
# GOARM: go arm value, now support:$(GOARM_VALUES)
# If not specified ,default use GOARM=GOARM8
#
#
# Example:
# make crossbuild
# make crossbuild HELP=y
# make crossbuild WHAT=edgecore
# make crossbuild WHAT=edgecore GOARM=GOARM7
#
endef
.PHONY: crossbuild
ifeq ($(HELP),y)
crossbuild:
@echo "$$CROSSBUILD_HELP_INFO"
else
crossbuild: clean
hack/make-rules/crossbuild.sh $(WHAT) $(GOARM)
endif
SMALLBUILD_COMPONENTS=edgecore
define SMALLBUILD_HELP_INFO
# small build components.
#
# Args:
# WHAT: Component names to be lint check. support: $(SMALLBUILD_COMPONENTS)
# If not specified, "everything" will be small build.
#
#
# Example:
# make smallbuild
# make smallbuild HELP=y
# make smallbuild WHAT=edgecore
#
endef
.PHONY: smallbuild
ifeq ($(HELP),y)
smallbuild:
@echo "$$SMALLBUILD_HELP_INFO"
else
smallbuild: clean
hack/make-rules/smallbuild.sh $(WHAT)
endif
define E2E_HELP_INFO
# e2e test.
#
# Example:
# make e2e
# make e2e HELP=y
#
endef
.PHONY: e2e
ifeq ($(HELP),y)
e2e:
@echo "$$E2E_HELP_INFO"
else
e2e:
# bash tests/e2e/scripts/execute.sh device_crd
# This has been commented temporarily since there is an issue of CI using same master for all PRs, which is causing failures when run parallelly
tests/e2e/scripts/execute.sh
endif
define KEADM_E2E_HELP_INFO
# keadm e2e test.
#
# Example:
# make keadm_e2e
# make keadm_e2e HELP=y
#
endef
.PHONY: keadm_e2e
ifeq ($(HELP),y)
keadm_e2e:
@echo "KEADM_E2E_HELP_INFO"
else
keadm_e2e:
tests/e2e/scripts/keadm_e2e.sh
endif
define CLEAN_HELP_INFO
# Clean up the output of make.
#
# Example:
# make clean
# make clean HELP=y
#
endef
.PHONY: clean
ifeq ($(HELP),y)
clean:
@echo "$$CLEAN_HELP_INFO"
else
clean:
hack/make-rules/clean.sh
endif
QEMU_ARCH ?= x86_64
ARCH ?= amd64
IMAGE_TAG ?= $(shell git describe --tags)
GO_LDFLAGS='$(shell hack/make-rules/version.sh)'
.PHONY: cloudimage
cloudimage:
docker build --build-arg GO_LDFLAGS=${GO_LDFLAGS} -t kubeedge/cloudcore:${IMAGE_TAG} -f build/cloud/Dockerfile .
.PHONY: admissionimage
admissionimage:
docker build --build-arg GO_LDFLAGS=${GO_LDFLAGS} -t kubeedge/admission:${IMAGE_TAG} -f build/admission/Dockerfile .
.PHONY: csidriverimage
csidriverimage:
docker build --build-arg GO_LDFLAGS=${GO_LDFLAGS} -t kubeedge/csidriver:${IMAGE_TAG} -f build/csidriver/Dockerfile .
.PHONY: edgeimage
edgeimage:
mkdir -p ./build/edge/tmp
rm -rf ./build/edge/tmp/*
curl -L -o ./build/edge/tmp/qemu-${QEMU_ARCH}-static.tar.gz https://github.com/multiarch/qemu-user-static/releases/download/v3.0.0/qemu-${QEMU_ARCH}-static.tar.gz
tar -xzf ./build/edge/tmp/qemu-${QEMU_ARCH}-static.tar.gz -C ./build/edge/tmp
docker build -t kubeedge/edgecore:${IMAGE_TAG} \
--build-arg GO_LDFLAGS=${GO_LDFLAGS} \
--build-arg BUILD_FROM=${ARCH}/golang:1.14-alpine3.11 \
--build-arg RUN_FROM=${ARCH}/docker:dind \
-f build/edge/Dockerfile .
.PHONY: edgesite-server-image
edgesite-server-image:
docker build . --build-arg ARCH=${ARCH} -f build/edgesite/server-build.Dockerfile -t kubeedge/edgesite-server-${ARCH}:${IMAGE_TAG}
.PHONY: edgesite-agent-image
edgesite-agent-image:
docker build . --build-arg ARCH=${ARCH} -f build/edgesite/agent-build.Dockerfile -t kubeedge/edgesite-agent-${ARCH}:${IMAGE_TAG}
define INSTALL_HELP_INFO
# install
#
# Args:
# WHAT: Component names to be installed to $${INSTALL_BIN_DIR} (${INSTALL_BIN_DIR})
# If not specified, "everything" will be installed
#
##
# Example:
# make install
# make install WHAT=edgecore
#
endef
.PHONY: help
ifeq ($(HELP),y)
install:
@echo "$$INSTALL_HELP_INFO"
else
install: _output/local/bin
install -d "${INSTALL_BIN_DIR}"
if [ "" != "${WHAT}" ]; then \
install "$</${WHAT}" "${INSTALL_BIN_DIR}" ;\
else \
for file in ${BINARIES} ; do \
install "$</$${file}" "${INSTALL_BIN_DIR}" ;\
done ; \
fi
endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。