Makefile 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Copyright (C) 2019-2020 Zilliz. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distributed under the License
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations under the License.

GO		?= go
PWD 	:= $(shell pwd)
GOPATH 	:= $(shell $(GO) env GOPATH)

INSTALL_PATH := $(PWD)/bin
LIBRARY_PATH := $(PWD)/lib

C
cai.zhang 已提交
19
all: build-cpp build-go
20 21 22 23

get-build-deps:
	@(env bash $(PWD)/scripts/install_deps.sh)

24 25
cppcheck:
	@(env bash ${PWD}/scripts/core_build.sh -l)
26 27 28 29 30 31 32 33

generated-proto-go:export protoc:=${PWD}/cmake_build/thirdparty/protobuf/protobuf-build/protoc
generated-proto-go: build-cpp
	@(env bash $(PWD)/scripts/proto_gen_go.sh)

check-proto-product: generated-proto-go
	@(env bash $(PWD)/scripts/check_proto_product.sh)

34 35
fmt:
	@echo "Running $@ check"
36 37
	@GO111MODULE=on env bash $(PWD)/scripts/gofmt.sh cmd/
	@GO111MODULE=on env bash $(PWD)/scripts/gofmt.sh internal/
G
godchen 已提交
38
	@GO111MODULE=on env bash $(PWD)/scripts/gofmt.sh tests/go/
39 40 41 42 43

#TODO: Check code specifications by golangci-lint
lint:
	@echo "Running $@ check"
	@GO111MODULE=on ${GOPATH}/bin/golangci-lint cache clean
X
XuanYang-cn 已提交
44 45 46
	@GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=30m --config ./.golangci.yml ./internal/...
	@GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=30m --config ./.golangci.yml ./cmd/...
	@GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=30m --config ./.golangci.yml ./tests/go/...
47

C
cai.zhang 已提交
48 49
ruleguard:
	@echo "Running $@ check"
C
cai.zhang 已提交
50 51
	@${GOPATH}/bin/ruleguard -rules ruleguard.rules.go ./internal/...
	@${GOPATH}/bin/ruleguard -rules ruleguard.rules.go ./cmd/...
G
godchen 已提交
52
	@${GOPATH}/bin/ruleguard -rules ruleguard.rules.go ./tests/go/...
C
cai.zhang 已提交
53

54
verifiers: cppcheck fmt lint ruleguard
55 56

# Builds various components locally.
N
neza2017 已提交
57
build-go:
58
	@echo "Building each component's binary to './bin'"
59
	@echo "Building master ..."
60
	@mkdir -p $(INSTALL_PATH) && go env -w CGO_ENABLED="0" && GO111MODULE=on $(GO) build -o $(INSTALL_PATH)/master $(PWD)/cmd/master/main.go 1>/dev/null
61
	@echo "Building proxy ..."
62
	@mkdir -p $(INSTALL_PATH) && go env -w CGO_ENABLED="0" && GO111MODULE=on $(GO) build -o $(INSTALL_PATH)/proxy $(PWD)/cmd/proxy/proxy.go 1>/dev/null
Z
zhenshan.cao 已提交
63 64
	@echo "Building query node ..."
	@mkdir -p $(INSTALL_PATH) && go env -w CGO_ENABLED="1" && GO111MODULE=on $(GO) build -o $(INSTALL_PATH)/querynode $(PWD)/cmd/querynode/query_node.go 1>/dev/null
65 66 67

build-cpp:
	@(env bash $(PWD)/scripts/core_build.sh)
Z
zhenshan.cao 已提交
68
	@(env bash $(PWD)/scripts/cwrapper_build.sh -t Release)
69 70 71

build-cpp-with-unittest:
	@(env bash $(PWD)/scripts/core_build.sh -u)
Z
zhenshan.cao 已提交
72
	@(env bash $(PWD)/scripts/cwrapper_build.sh -t Release)
73 74

# Runs the tests.
75
unittest: test-cpp test-go
76

N
neza2017 已提交
77
#TODO: proxy master query node writer's unittest
C
cai.zhang 已提交
78
test-go:
79 80 81 82
	@echo "Running go unittests..."
	@(env bash $(PWD)/scripts/run_go_unittest.sh)

test-cpp: build-cpp-with-unittest
C
cai.zhang 已提交
83
	@echo "Running cpp unittests..."
84 85 86 87
	@(env bash $(PWD)/scripts/run_cpp_unittest.sh)

#TODO: build each component to docker
docker: verifiers
N
neza2017 已提交
88
	@echo "Building query node docker image '$(TAG)'"
89 90 91 92 93 94
	@echo "Building proxy docker image '$(TAG)'"
	@echo "Building master docker image '$(TAG)'"

# Builds each component and installs it to $GOPATH/bin.
install: all
	@echo "Installing binary to './bin'"
N
neza2017 已提交
95
	@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/bin/querynode $(GOPATH)/bin/querynode
96 97 98 99 100 101 102 103 104
	@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/bin/master $(GOPATH)/bin/master
	@mkdir -p $(GOPATH)/bin && cp -f $(PWD)/bin/proxy $(GOPATH)/bin/proxy
	@mkdir -p $(LIBRARY_PATH) && cp -f $(PWD)/internal/core/output/lib/* $(LIBRARY_PATH)
	@echo "Installation successful."

clean:
	@echo "Cleaning up all the generated files"
	@find . -name '*.test' | xargs rm -fv
	@find . -name '*~' | xargs rm -fv
N
neza2017 已提交
105
	@rm -rvf querynode
106 107
	@rm -rvf master
	@rm -rvf proxy