Commit d5c5a5d1 authored by groot's avatar groot
Browse files

merge 0.5 branch


Former-commit-id: 3b498baf9070ae2a2f31514910fab705abdca71c
parents df1ab644 0cac5e9c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
container('milvus-build-env') {
    timeout(time: 40, unit: 'MINUTES') {
    timeout(time: 120, unit: 'MINUTES') {
        gitlabCommitStatus(name: 'Build Engine') {
            dir ("milvus_engine") {
                try {
+1 −1
Original line number Diff line number Diff line
container('milvus-build-env') {
    timeout(time: 40, unit: 'MINUTES') {
    timeout(time: 120, unit: 'MINUTES') {
        gitlabCommitStatus(name: 'Build Engine') {
            dir ("milvus_engine") {
                try {
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-614 - Preload table at startup
- MS-626 - Refactor DataObj to support cache any type data
- MS-648 - Improve unittest
- MS-655 - Upgrade SPTAG

## New Feature
- MS-627 - Integrate new index: IVFSQHybrid
+0 −4
Original line number Diff line number Diff line
@@ -125,10 +125,6 @@ set(MILVUS_SOURCE_DIR ${PROJECT_SOURCE_DIR})
set(MILVUS_BINARY_DIR ${PROJECT_BINARY_DIR})
set(MILVUS_ENGINE_SRC ${PROJECT_SOURCE_DIR}/src)

if (CUSTOMIZATION)
    add_definitions(-DCUSTOMIZATION)
endif (CUSTOMIZATION)

include(ExternalProject)
include(DefineOptions)
include(BuildUtils)
+5 −0
Original line number Diff line number Diff line
@@ -88,6 +88,11 @@ function(ExternalProject_Create_Cache project_name package_file install_path cac
        file(REMOVE ${package_file})
    endif()

    string(REGEX REPLACE "(.+)/.+$" "\\1" package_dir ${package_file})
    if(NOT EXISTS ${package_dir})
        file(MAKE_DIRECTORY ${package_dir})
    endif()

    message(STATUS "Will create cached package file: ${package_file}")

    ExternalProject_Add_Step(${project_name} package
Loading