2020-10-30 16:25:06 +08:00
# 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.
2022-03-16 16:51:22 +08:00
GO ?= go
PWD := $( shell pwd )
GOPATH := $( shell $( GO) env GOPATH)
OBJPREFIX := "github.com/milvus-io/milvus/cmd/milvus"
2020-10-30 16:25:06 +08:00
INSTALL_PATH := $( PWD) /bin
LIBRARY_PATH := $( PWD) /lib
2022-02-09 14:27:46 +08:00
OS := $( shell uname -s)
ARCH := $( shell arch)
mode = Release
2020-10-30 16:25:06 +08:00
2020-11-09 18:47:37 +08:00
all : build -cpp build -go
2020-10-30 16:25:06 +08:00
2022-02-09 14:27:46 +08:00
pre-proc :
@echo "Running pre-processing"
i f e q ( $( OS ) , D a r w i n ) # MacOS X
@echo "MacOS system identified. Switching to customized gorocksdb fork..."
2022-02-17 19:05:49 +08:00
@go mod edit -replace= github.com/tecbot/gorocksdb= github.com/soothing-rain/gorocksdb@v0.0.1
2022-02-09 14:27:46 +08:00
e n d i f
2022-03-17 17:17:22 +08:00
i f e q ( $( MSYSTEM ) , M I N G W 6 4 ) # MSYS
@echo "MSYS. Switching to customized gorocksdb fork..."
@go mod edit -replace= github.com/tecbot/gorocksdb= github.com/soothing-rain/gorocksdb@v0.0.1
e n d i f
2022-01-21 19:51:38 +08:00
2020-10-30 16:25:06 +08:00
get-build-deps :
@( env bash $( PWD) /scripts/install_deps.sh)
2021-12-07 17:59:02 +08:00
# attention: upgrade golangci-lint should also change Dockerfiles in build/docker/builder/cpu/<os>
2020-12-09 20:07:27 +08:00
getdeps :
@mkdir -p ${ GOPATH } /bin
2021-12-06 18:26:08 +08:00
@which golangci-lint 1>/dev/null || ( echo "Installing golangci-lint" && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $( GOPATH) /bin v1.43.0)
2021-01-13 13:36:27 +08:00
@which ruleguard 1>/dev/null || ( echo "Installing ruleguard" && go get github.com/quasilyte/go-ruleguard/cmd/ruleguard@v0.2.1)
2020-12-09 20:07:27 +08:00
2020-12-31 17:25:45 +08:00
tools/bin/revive : tools /check /go .mod
cd tools/check; \
$( GO) build -o ../bin/revive github.com/mgechev/revive
2020-11-23 19:57:05 +08:00
cppcheck :
@( env bash ${ PWD } /scripts/core_build.sh -l)
2020-11-18 10:07:05 +08:00
2021-07-09 11:59:09 +08:00
generated-proto-go : export protoc :=${PWD }/cmake_build /thirdparty /protobuf /protobuf -build /protoc
2020-11-18 10:07:05 +08:00
generated-proto-go : build -cpp
2020-12-09 20:07:27 +08:00
@mkdir -p ${ GOPATH } /bin
2022-04-06 19:47:31 +08:00
@which protoc-gen-go 1>/dev/null || ( echo "Installing protoc-gen-go" && cd /tmp && go install github.com/golang/protobuf/protoc-gen-go@v1.3.2)
2020-11-18 10:07:05 +08:00
@( env bash $( PWD) /scripts/proto_gen_go.sh)
check-proto-product : generated -proto -go
@( env bash $( PWD) /scripts/check_proto_product.sh)
2020-10-30 16:25:06 +08:00
fmt :
2020-12-29 17:19:44 +08:00
i f d e f G O _ D I F F _ F I L E S
@echo " Running $@ check "
@GO111MODULE= on env bash $( PWD) /scripts/gofmt.sh $( GO_DIFF_FILES)
e l s e
2020-10-30 16:25:06 +08:00
@echo " Running $@ check "
2020-11-18 10:07:05 +08:00
@GO111MODULE= on env bash $( PWD) /scripts/gofmt.sh cmd/
@GO111MODULE= on env bash $( PWD) /scripts/gofmt.sh internal/
2020-12-03 19:00:11 +08:00
@GO111MODULE= on env bash $( PWD) /scripts/gofmt.sh tests/go/
2020-12-29 17:19:44 +08:00
e n d i f
2020-10-30 16:25:06 +08:00
2021-07-09 11:59:09 +08:00
lint : tools /bin /revive
2020-12-31 17:25:45 +08:00
@echo " Running $@ check "
@tools/bin/revive -formatter friendly -config tools/check/revive.toml ./...
2020-10-30 16:25:06 +08:00
#TODO: Check code specifications by golangci-lint
2021-01-14 15:12:08 +08:00
static-check :
2020-10-30 16:25:06 +08:00
@echo " Running $@ check "
@GO111MODULE= on ${ GOPATH } /bin/golangci-lint cache clean
2020-12-08 14:41:04 +08:00
@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/...
2021-08-20 14:04:12 +08:00
# @GO111MODULE=on ${GOPATH}/bin/golangci-lint run --timeout=30m --config ./.golangci.yml ./tests/go_client/...
2020-10-30 16:25:06 +08:00
2020-11-03 11:25:47 +08:00
ruleguard :
2020-12-29 17:19:44 +08:00
i f d e f G O _ D I F F _ F I L E S
@echo " Running $@ check "
@${ GOPATH } /bin/ruleguard -rules ruleguard.rules.go $( GO_DIFF_FILES)
e l s e
2020-11-03 11:25:47 +08:00
@echo " Running $@ check "
2022-02-09 14:27:46 +08:00
i f e q ( $( OS ) , D a r w i n ) # MacOS X
i f e q ( $( ARCH ) , a r m 6 4 )
@${ GOPATH } /bin/darwin_arm64/ruleguard -rules ruleguard.rules.go ./internal/...
@${ GOPATH } /bin/darwin_arm64/ruleguard -rules ruleguard.rules.go ./cmd/...
e l s e
2020-11-13 10:00:32 +08:00
@${ GOPATH } /bin/ruleguard -rules ruleguard.rules.go ./internal/...
@${ GOPATH } /bin/ruleguard -rules ruleguard.rules.go ./cmd/...
2022-02-09 14:27:46 +08:00
e n d i f
e l s e
@${ GOPATH } /bin/ruleguard -rules ruleguard.rules.go ./internal/...
@${ GOPATH } /bin/ruleguard -rules ruleguard.rules.go ./cmd/...
e n d i f
#@${GOPATH}/bin/ruleguard -rules ruleguard.rules.go ./tests/go/...
2020-12-29 17:19:44 +08:00
e n d i f
2020-11-03 11:25:47 +08:00
2021-08-20 17:45:17 +08:00
verifiers : build -cpp getdeps cppcheck fmt static -check ruleguard
2020-10-30 16:25:06 +08:00
2021-09-29 14:41:58 +08:00
# Build various components locally.
2021-04-09 14:07:03 +08:00
binlog :
@echo "Building binlog ..."
2021-09-29 20:26:00 +08:00
@mkdir -p $( INSTALL_PATH) && go env -w CGO_ENABLED = "1" && GO111MODULE = on $( GO) build -o $( INSTALL_PATH) /binlog $( PWD) /cmd/tools/binlog/main.go 1>/dev/null
2021-02-20 10:15:37 +08:00
2021-06-22 11:34:04 +08:00
BUILD_TAGS = $( shell git describe --tags --always --dirty= "-dev" )
2022-02-09 14:27:46 +08:00
BUILD_TIME = $( shell date -u)
2021-06-22 11:34:04 +08:00
GIT_COMMIT = $( shell git rev-parse --short HEAD)
GO_VERSION = $( shell go version)
2022-04-20 23:03:41 +08:00
i f e q ( $( OS ) , D a r w i n )
i f e q ( $( ARCH ) , a r m 6 4 )
APPLE_SILICON_FLAG = -tags dynamic
e n d i f
e n d i f
2021-06-22 11:34:04 +08:00
2021-12-15 10:21:10 +08:00
print-build-info :
@echo " Build Tag: $( BUILD_TAGS) "
@echo " Build Time: $( BUILD_TIME) "
@echo " Git Commit: $( GIT_COMMIT) "
@echo " Go Version: $( GO_VERSION) "
milvus : build -cpp print -build -info
2021-06-18 15:20:08 +08:00
@echo "Building Milvus ..."
2022-04-26 14:21:46 +08:00
@echo "if build fails on Mac M1 machines, rerun scripts/install_deps.sh and then run: \`export PKG_CONFIG_PATH=\"/opt/homebrew/opt/openssl@3/lib/pkgconfig\"\`"
2021-06-22 11:34:04 +08:00
@mkdir -p $( INSTALL_PATH) && go env -w CGO_ENABLED = "1" && GO111MODULE = on $( GO) build \
2022-03-16 16:51:22 +08:00
-ldflags= " -X ' $( OBJPREFIX) .BuildTags= $( BUILD_TAGS) ' -X ' $( OBJPREFIX) .BuildTime= $( BUILD_TIME) ' -X ' $( OBJPREFIX) .GitCommit= $( GIT_COMMIT) ' -X ' $( OBJPREFIX) .GoVersion= $( GO_VERSION) ' " \
2022-04-20 23:03:41 +08:00
${ APPLE_SILICON_FLAG } -o $( INSTALL_PATH) /milvus $( PWD) /cmd/main.go 1>/dev/null
2021-04-15 09:28:46 +08:00
2022-03-16 16:51:22 +08:00
embd-milvus : build -cpp -embd print -build -info
@echo "Building **Embedded** Milvus ..."
2022-04-26 14:21:46 +08:00
@echo "if build fails on Mac M1 machines, rerun scripts/install_deps.sh and then run: \`export PKG_CONFIG_PATH=\"/opt/homebrew/opt/openssl@3/lib/pkgconfig\"\`"
2022-03-16 16:51:22 +08:00
@mkdir -p $( INSTALL_PATH) && go env -w CGO_ENABLED = "1" && GO111MODULE = on $( GO) build \
2022-04-20 17:23:46 +08:00
-ldflags= " -r /tmp/milvus/lib/ -X ' $( OBJPREFIX) .BuildTags= $( BUILD_TAGS) ' -X ' $( OBJPREFIX) .BuildTime= $( BUILD_TIME) ' -X ' $( OBJPREFIX) .GitCommit= $( GIT_COMMIT) ' -X ' $( OBJPREFIX) .GoVersion= $( GO_VERSION) ' " \
2022-04-20 23:03:41 +08:00
${ APPLE_SILICON_FLAG } -buildmode= c-shared -o $( INSTALL_PATH) /embd-milvus.so $( PWD) /pkg/embedded/embedded.go 1>/dev/null
2022-03-16 16:51:22 +08:00
2021-06-18 15:20:08 +08:00
build-go : milvus
2021-01-25 15:58:04 +08:00
2022-02-09 14:27:46 +08:00
build-cpp : pre -proc
2021-07-09 11:59:09 +08:00
@echo "Building Milvus cpp library ..."
2022-04-14 19:57:34 +08:00
@( env bash $( PWD) /scripts/core_build.sh -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
2022-03-16 16:51:22 +08:00
@( env bash $( PWD) /scripts/cwrapper_build.sh -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
@( env bash $( PWD) /scripts/cwrapper_rocksdb_build.sh -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
build-cpp-embd : pre -proc
@echo "Building **Embedded** Milvus cpp library ..."
@( env bash $( PWD) /scripts/core_build.sh -b -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
2022-04-14 19:57:34 +08:00
@( env bash $( PWD) /scripts/cwrapper_build.sh -b -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
@( env bash $( PWD) /scripts/cwrapper_rocksdb_build.sh -b -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
2020-10-30 16:25:06 +08:00
2022-02-09 14:27:46 +08:00
build-cpp-with-unittest : pre -proc
2021-07-09 11:59:09 +08:00
@echo "Building Milvus cpp library with unittest ..."
2022-04-11 09:49:34 +08:00
@( env bash $( PWD) /scripts/core_build.sh -t ${ mode } -u -f " $( CUSTOM_THIRDPARTY_PATH) " )
2022-02-09 14:27:46 +08:00
@( env bash $( PWD) /scripts/cwrapper_build.sh -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
@( env bash $( PWD) /scripts/cwrapper_rocksdb_build.sh -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
2020-10-30 16:25:06 +08:00
2022-04-11 09:49:34 +08:00
build-cpp-with-coverage : pre -proc
@echo "Building Milvus cpp library with coverage and unittest ..."
@( env bash $( PWD) /scripts/core_build.sh -t ${ mode } -u -c -f " $( CUSTOM_THIRDPARTY_PATH) " )
@( env bash $( PWD) /scripts/cwrapper_build.sh -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
@( env bash $( PWD) /scripts/cwrapper_rocksdb_build.sh -t ${ mode } -f " $( CUSTOM_THIRDPARTY_PATH) " )
2021-09-29 14:41:58 +08:00
# Run the tests.
2020-10-31 16:30:20 +08:00
unittest : test -cpp test -go
2020-10-30 16:25:06 +08:00
2022-01-24 17:18:46 +08:00
test-indexnode :
@echo "Running go unittests..."
go test -race -coverpkg= ./... -coverprofile= profile.out -covermode= atomic -timeout 5m github.com/milvus-io/milvus/internal/indexnode -v
2021-10-24 15:16:00 +08:00
test-proxy :
@echo "Running go unittests..."
go test -race -coverpkg= ./... -coverprofile= profile.out -covermode= atomic -timeout 5m github.com/milvus-io/milvus/internal/proxy -v
2022-03-15 21:51:21 +08:00
test-datacoord :
@echo "Running go unittests..."
go test -race -coverpkg= ./... -coverprofile= profile.out -covermode= atomic -timeout 5m github.com/milvus-io/milvus/internal/datacoord -v
2022-01-04 23:33:24 +08:00
test-datanode :
@echo "Running go unittests..."
go test -race -coverpkg= ./... -coverprofile= profile.out -covermode= atomic -timeout 5m github.com/milvus-io/milvus/internal/datanode -v
2021-10-24 15:16:00 +08:00
2022-03-08 17:39:58 +08:00
test-querynode :
@echo "Running go unittests..."
go test -race -coverpkg= ./... -coverprofile= profile.out -covermode= atomic -timeout 5m github.com/milvus-io/milvus/internal/querynode -v
2021-10-27 23:00:24 +08:00
test-querycoord :
@echo "Running go unittests..."
go test -race -coverpkg= ./... -coverprofile= profile.out -covermode= atomic -timeout 5m github.com/milvus-io/milvus/internal/querycoord -v
2021-07-16 14:52:21 +08:00
test-go : build -cpp -with -unittest
2020-10-30 16:25:06 +08:00
@echo "Running go unittests..."
2021-12-08 10:55:04 +08:00
@( env bash $( PWD) /scripts/run_go_unittest.sh)
2020-10-30 16:25:06 +08:00
test-cpp : build -cpp -with -unittest
2020-11-03 11:25:47 +08:00
@echo "Running cpp unittests..."
2021-12-08 10:55:04 +08:00
@( env bash $( PWD) /scripts/run_cpp_unittest.sh)
2020-10-30 16:25:06 +08:00
2021-09-29 14:41:58 +08:00
# Run code coverage.
2021-09-22 16:01:53 +08:00
codecov : codecov -go codecov -cpp
2021-09-18 14:19:51 +08:00
2021-09-22 16:01:53 +08:00
# Run codecov-go
2022-04-11 09:49:34 +08:00
codecov-go : build -cpp -with -coverage
2021-09-18 14:19:51 +08:00
@echo "Running go coverage..."
2021-04-24 15:10:24 +08:00
@( env bash $( PWD) /scripts/run_go_codecov.sh)
2021-09-22 16:01:53 +08:00
# Run codecov-cpp
2022-04-11 09:49:34 +08:00
codecov-cpp : build -cpp -with -coverage
2021-09-18 14:19:51 +08:00
@echo "Running cpp coverage..."
2021-09-17 14:21:50 +08:00
@( env bash $( PWD) /scripts/run_cpp_codecov.sh)
2021-10-08 19:30:58 +08:00
# Package docker image locally.
# TODO: fix error occur at starting up
docker : install
./build/build_image.sh
2020-10-30 16:25:06 +08:00
2021-09-29 14:41:58 +08:00
# Build each component and install binary to $GOPATH/bin.
2020-10-30 16:25:06 +08:00
install : all
@echo "Installing binary to './bin'"
2021-04-15 09:28:46 +08:00
@mkdir -p $( GOPATH) /bin && cp -f $( PWD) /bin/milvus $( GOPATH) /bin/milvus
2022-04-01 15:31:29 +08:00
@mkdir -p $( LIBRARY_PATH) && cp -r -P $( PWD) /internal/core/output/lib/* $( LIBRARY_PATH)
2020-10-30 16:25:06 +08:00
@echo "Installation successful."
clean :
@echo "Cleaning up all the generated files"
@find . -name '*.test' | xargs rm -fv
@find . -name '*~' | xargs rm -fv
2021-01-11 18:35:54 +08:00
@rm -rf bin/
@rm -rf lib/
2021-09-08 16:32:00 +08:00
@rm -rf $( GOPATH) /bin/milvus
2022-02-10 17:03:48 +08:00
@rm -rf cmake_build
@rm -rf cwrapper_rocksdb_build
@rm -rf cwrapper_build
2021-08-24 15:51:51 +08:00
2021-12-15 10:21:10 +08:00
milvus-tools : print -build -info
2021-08-24 15:51:51 +08:00
@echo "Building tools ..."
@mkdir -p $( INSTALL_PATH) /tools && go env -w CGO_ENABLED = "1" && GO111MODULE = on $( GO) build \
-ldflags= " -X 'main.BuildTags= $( BUILD_TAGS) ' -X 'main.BuildTime= $( BUILD_TIME) ' -X 'main.GitCommit= $( GIT_COMMIT) ' -X 'main.GoVersion= $( GO_VERSION) ' " \
-o $( INSTALL_PATH) /tools $( PWD) /cmd/tools/* 1>/dev/null
2021-12-28 09:52:10 +08:00
rpm-setup :
@echo "Setuping rpm env ...;"
2021-12-30 16:59:20 +08:00
@build/rpm/setup-env.sh
2021-12-28 09:52:10 +08:00
rpm : install
@echo "Note: run 'make rpm-setup' to setup build env for rpm builder"
@echo "Building rpm ...;"
@yum -y install rpm-build rpmdevtools wget
@rm -rf ~/rpmbuild/BUILD/*
@rpmdev-setuptree
@wget https://github.com/etcd-io/etcd/releases/download/v3.5.0/etcd-v3.5.0-linux-amd64.tar.gz && tar -xf etcd-v3.5.0-linux-amd64.tar.gz
@cp etcd-v3.5.0-linux-amd64/etcd bin/etcd
@wget https://dl.min.io/server/minio/release/linux-amd64/archive/minio.RELEASE.2021-02-14T04-01-33Z -O bin/minio
@cp -r bin ~/rpmbuild/BUILD/
@cp -r lib ~/rpmbuild/BUILD/
@cp -r configs ~/rpmbuild/BUILD/
@cp -r build/rpm/services ~/rpmbuild/BUILD/
2021-12-30 16:59:20 +08:00
@QA_RPATHS= " $$ [ 0x001|0x0002|0x0020 ] " rpmbuild -ba ./build/rpm/milvus.spec