chore: modify report style
This commit is contained in:
parent
1aacbb126c
commit
fdd1e49d85
|
@ -296,15 +296,15 @@ echo "https://${var.github_token}:x-oauth-basic@github.com" > ~/.git-credentials
|
|||
git config --global user.name "${var.user_name}"
|
||||
git config --global user.email "${var.user_email}"
|
||||
|
||||
# 启动Redis Cluster
|
||||
cd ~
|
||||
git clone https://github.com/redis/redis.git
|
||||
cd redis
|
||||
make -j
|
||||
cd utils/create-cluster
|
||||
./create-cluster start
|
||||
yes yes | ./create-cluster create
|
||||
echo yes | ./create-cluster create
|
||||
|
||||
# 可替换为含有dailyTest分支仓库的url
|
||||
cd ~
|
||||
REPO_URL="https://github.com/tair-opensource/resp-compatibility.git"
|
||||
RETRY_COUNT=0
|
||||
|
@ -331,9 +331,3 @@ cd resp-compatibility
|
|||
python3 conn.py
|
||||
EOF
|
||||
}
|
||||
|
||||
|
||||
output "ecs_ip_address" {
|
||||
value = alicloud_instance.my_ecs.private_ip
|
||||
}
|
||||
|
||||
|
|
72
config.yaml
72
config.yaml
|
@ -14,31 +14,23 @@ SpecificVersion:
|
|||
# the host, port, password of all the db to be tested
|
||||
Database:
|
||||
Redis:
|
||||
host: 172.16.0.10
|
||||
host: 127.0.0.1
|
||||
port: 6379
|
||||
password:
|
||||
ssl: false
|
||||
cluster: false
|
||||
version: latest
|
||||
|
||||
RedisCluster:
|
||||
|
||||
DragonflyDB:
|
||||
host: 127.0.0.1
|
||||
port: 30001
|
||||
password:
|
||||
ssl: false
|
||||
cluster: true
|
||||
version: latest
|
||||
|
||||
Valkey:
|
||||
host: 172.16.0.10
|
||||
port: 6384
|
||||
port: 6380
|
||||
password:
|
||||
ssl: false
|
||||
cluster: false
|
||||
version: latest
|
||||
|
||||
Kvrocks:
|
||||
host: 172.16.0.10
|
||||
host: 127.0.0.1
|
||||
port: 6381
|
||||
password:
|
||||
ssl: false
|
||||
|
@ -46,7 +38,7 @@ Database:
|
|||
version: latest
|
||||
|
||||
KeyDB:
|
||||
host: 172.16.0.10
|
||||
host: 127.0.0.1
|
||||
port: 6382
|
||||
password:
|
||||
ssl: false
|
||||
|
@ -54,13 +46,61 @@ Database:
|
|||
version: latest
|
||||
|
||||
Pika:
|
||||
host: 172.17.0.6
|
||||
port: 9221
|
||||
host: 127.0.0.1
|
||||
port: 6383
|
||||
password:
|
||||
ssl: false
|
||||
cluster: false
|
||||
version: latest
|
||||
|
||||
Valkey:
|
||||
host: 127.0.0.1
|
||||
port: 6384
|
||||
password:
|
||||
ssl: false
|
||||
cluster: false
|
||||
version: latest
|
||||
|
||||
RedisCluster:
|
||||
host: 127.0.0.1
|
||||
port: 30001
|
||||
password:
|
||||
ssl: false
|
||||
cluster: true
|
||||
version: latest
|
||||
|
||||
AliyunRedis:
|
||||
host:
|
||||
port:
|
||||
password:
|
||||
ssl:
|
||||
cluster: false
|
||||
version:
|
||||
|
||||
AliyunRedisCluster:
|
||||
host:
|
||||
port:
|
||||
password:
|
||||
ssl:
|
||||
cluster: true
|
||||
version:
|
||||
|
||||
AliyunTair:
|
||||
host:
|
||||
port:
|
||||
password:
|
||||
ssl:
|
||||
cluster: false
|
||||
version:
|
||||
|
||||
AliyunTairCluster:
|
||||
host:
|
||||
port:
|
||||
password:
|
||||
ssl:
|
||||
cluster: true
|
||||
version:
|
||||
|
||||
ElastiCache:
|
||||
host:
|
||||
port:
|
||||
|
|
Loading…
Reference in New Issue