diff --git a/cpp/CHANGELOG.md b/cpp/CHANGELOG.md index 49612ccdad77142ac1f6ef52b10aa5f9208dbaee..1ebe05eb21fb91317f8ad389d3e88d6d85753262 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 f1936559ad5f52a0feb5e56e2b7f5c76caac1bfa..a7ece5fee6bf0aea79f3e8322ff15a6dead1b5c2 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