From 7532f7b9725122bd8b808036355b20a984580921 Mon Sep 17 00:00:00 2001 From: quicksilver Date: Sun, 23 Jun 2019 18:38:55 +0800 Subject: [PATCH] MS-104 Fix unittest lcov execution error Former-commit-id: e6397d04476dade00c246d1f752fc6b6a925182b --- cpp/CHANGELOG.md | 1 + cpp/build.sh | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/cpp/CHANGELOG.md b/cpp/CHANGELOG.md index 49612ccdad..1ebe05eb21 100644 --- a/cpp/CHANGELOG.md +++ b/cpp/CHANGELOG.md @@ -5,6 +5,7 @@ Please mark all change in change log and use the ticket from JIRA. # Milvus 0.3.0 (TBD) ## Bug +- MS-104 - Fix unittest lcov execution error - MS-102 - Fix build script file condition error - MS-80 - Fix server hang issue - MS-89 - Fix compile failed, libgpufaiss.a link missing diff --git a/cpp/build.sh b/cpp/build.sh index f1936559ad..a7ece5fee6 100755 --- a/cpp/build.sh +++ b/cpp/build.sh @@ -84,10 +84,10 @@ if [[ ${BUILD_TYPE} != "Debug" ]]; then strip src/milvus_server fi +make install || exit 1 + if [[ ${BUILD_COVERAGE} == "ON" ]]; then cd - bash `pwd`/coverage.sh cd - fi - -make install