Unverified Commit 3a66e9ad authored by Jin Hai's avatar Jin Hai Committed by GitHub
Browse files

Fix compile (#1817)



* Update CHANGELOG.md

Signed-off-by: default avatarjinhai <hai.jin@zilliz.com>

* Update

Signed-off-by: default avatarjinhai <hai.jin@zilliz.com>

* Update

Signed-off-by: default avatarjinhai <hai.jin@zilliz.com>

* Increase Resources

Signed-off-by: default avatarjinhai <hai.jin@zilliz.com>

* Decrease the compiling thread

Signed-off-by: default avatarjinhai <hai.jin@zilliz.com>
parent e9f47260
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@ dir ("ci/scripts") {
        def checkResult = sh(script: "./check_ccache.sh -l ${params.JFROG_ARTFACTORY_URL}/ccache", returnStatus: true)

        if ("${BINARY_VERSION}" == "gpu") {
            sh "/bin/bash --login -c \". ./before-install.sh && ./build.sh -t ${params.BUILD_TYPE} -i ${env.MILVUS_INSTALL_PREFIX} --with_fiu --coverage -l -g -u\""
            sh "/bin/bash --login -c \". ./before-install.sh && ./build.sh -t ${params.BUILD_TYPE} -j 4 -i ${env.MILVUS_INSTALL_PREFIX} --with_fiu --coverage -l -g -u\""
        } else {
            sh "/bin/bash --login -c \". ./before-install.sh && ./build.sh -t ${params.BUILD_TYPE} -i ${env.MILVUS_INSTALL_PREFIX} --with_fiu --coverage -l -u\""
            sh "/bin/bash --login -c \". ./before-install.sh && ./build.sh -t ${params.BUILD_TYPE} -j 4 -i ${env.MILVUS_INSTALL_PREFIX} --with_fiu --coverage -l -u\""
        }
        sh "./update_ccache.sh -l ${params.JFROG_ARTFACTORY_URL}/ccache -u ${USERNAME} -p ${PASSWORD}"
    }