mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
7dbf33b788
* rename master/indexService in .yaml Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * rename proxyNode to proxy in config files Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * move master.yaml to root_coord.yaml, move proxy_node.yaml to proxy.yaml Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * move proto/query_service.proto to proto/query_coord.proto Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * move proxy_node_manager.go to proxy_manager.go Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * add query_coord.pb.go Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * update ci Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
42 lines
1.9 KiB
Bash
Executable File
42 lines
1.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
SOURCE="${BASH_SOURCE[0]}"
|
|
while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink
|
|
DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )"
|
|
SOURCE="$(readlink "$SOURCE")"
|
|
[[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located
|
|
done
|
|
ROOT_DIR="$( cd -P "$( dirname "$SOURCE" )/.." && pwd )"
|
|
|
|
# ignore Minio,S3 unittes
|
|
MILVUS_DIR="${ROOT_DIR}/internal/"
|
|
echo $MILVUS_DIR
|
|
|
|
go test -race -cover "${MILVUS_DIR}/allocator/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/kv/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/msgstream/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/storage" -failfast
|
|
go test -race -cover "${MILVUS_DIR}/tso/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/dablooms/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/funcutil/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/mqclient/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/paramtable/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/retry/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/rocksmq/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/sessionutil/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/trace/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/util/typeutil/..." -failfast
|
|
|
|
# TODO: remove to distributed
|
|
#go test -race -cover "${MILVUS_DIR}/proxy/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/datanode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/indexnode/..." -failfast
|
|
go test -race -cover "${MILVUS_DIR}/querynode/..." -failfast
|
|
|
|
go test -race -cover -v "${MILVUS_DIR}/distributed/rootcoord" -failfast
|
|
go test -race -cover -v "${MILVUS_DIR}/rootcoord" -failfast
|
|
go test -race -cover -v "${MILVUS_DIR}/datacoord/..." -failfast
|
|
go test -race -cover -v "${MILVUS_DIR}/indexcoord/..." -failfast
|