Config upgrade (#2281)

* upgrade config to 0.4

Signed-off-by: wxyu <xy.wang@zilliz.com>

* update milvus version in cmakelists.txt

Signed-off-by: wxyu <xy.wang@zilliz.com>

* disable make VERBOSE

Signed-off-by: wxyu <xy.wang@zilliz.com>
This commit is contained in:
Wang XiangYu 2020-05-10 22:55:46 +08:00 committed by GitHub
parent 8d732656a7
commit 369743c10d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -90,7 +90,7 @@ if (MILVUS_VERSION_MAJOR STREQUAL ""
OR MILVUS_VERSION_MINOR STREQUAL ""
OR MILVUS_VERSION_PATCH STREQUAL "")
message(WARNING "Failed to determine Milvus version from git branch name")
set(MILVUS_VERSION "0.8.0")
set(MILVUS_VERSION "0.9.0")
endif ()
message(STATUS "Build version = ${MILVUS_VERSION}")

View File

@ -157,5 +157,5 @@ if [[ ${RUN_CPPLINT} == "ON" ]]; then
else
# compile and build
make -j 8 VERBOSE=1 install || exit 1
make -j 8 install || exit 1
fi