update version info for 0.10.5 (#4409)

Signed-off-by: shengjun.li <shengjun.li@zilliz.com>
pull/4443/head
shengjun.li 2020-12-08 18:22:21 +08:00 committed by GitHub
parent 4c7d6c22ef
commit 47542a747c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 8 additions and 7 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env groovy
String cron_timezone = "TZ=Asia/Shanghai"
String cron_string = BRANCH_NAME == "master" ? "50 22 * * * " : ""
String cron_string = BRANCH_NAME == "0.10.5" ? "50 22 * * * " : ""
pipeline {
agent none

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.10.4")
set(MILVUS_VERSION "0.10.5")
endif ()
message(STATUS "Build version = ${MILVUS_VERSION}")

View File

@ -204,7 +204,8 @@ static const std::unordered_map<std::string, std::string> milvus_config_version_
{"0.10.1", "0.5"},
{"0.10.2", "0.5"},
{"0.10.3", "0.5"},
{"0.10.4", "0.5"}});
{"0.10.4", "0.5"},
{"0.10.5", "0.5"}});
/////////////////////////////////////////////////////////////
Config::Config() {

View File

@ -6,7 +6,7 @@ pipeline {
}
parameters{
string defaultValue: '0.10.4', description: 'server image version', name: 'IMAGE_VERSION', trim: true
string defaultValue: '0.10.5', description: 'server image version', name: 'IMAGE_VERSION', trim: true
choice choices: ['single', 'shards'], description: 'server deploy mode', name: 'DEPLOY_MODE'
string defaultValue: '010_data.json', description: 'test suite config yaml', name: 'CONFIG_FILE', trim: true
string defaultValue: 'shards.json', description: 'shards test suite config yaml', name: 'SHARDS_CONFIG_FILE', trim: true
@ -15,9 +15,9 @@ pipeline {
environment {
HELM_URL = "https://github.com/milvus-io/milvus-helm.git"
HELM_BRANCH = "0.10.3"
HELM_BRANCH = "0.10.4"
TEST_URL = "git@192.168.1.105:Test/milvus_benchmark.git"
TEST_BRANCH = "0.10.4"
TEST_BRANCH = "0.10.5"
TEST_LIB_URL = "http://192.168.1.105:6060/Test/milvus_metrics.git"
HELM_RELEASE_NAME = "milvus-benchmark-test-${env.BUILD_NUMBER}"
HELM_SHARDS_RELEASE_NAME = "milvus-shards-benchmark-test-${env.BUILD_NUMBER}"

View File

@ -1,7 +1,7 @@
import logging
import pytest
__version__ = '0.10.4'
__version__ = '0.10.5'
class TestPing: