Skip to content

Commit d5f8d2f

Browse files
committed
fix
1 parent 55bffea commit d5f8d2f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: |
7474
# use latest stable version
7575
~/.tiup/bin/tiup install tikv pd
76-
make tiup-v1ttl
76+
~/.tiup/bin/tiup playground nightly --mode tikv-slim --kv 3 --without-monitor --kv.config $(shell pwd)/config/tikv-v1ttl.toml --pd.config $(shell pwd)/config/pd.toml &
7777
while :; do
7878
echo "waiting cluster to be ready"
7979
[[ "$(curl -I http://127.0.0.1:2379/pd/api/v1/regions 2>/dev/null | head -n 1 | cut -d$' ' -f2)" -ne "405" ]] || break
@@ -104,7 +104,7 @@ jobs:
104104
run: |
105105
# use latest stable version
106106
~/.tiup/bin/tiup install tikv pd
107-
make tiup
107+
~/.tiup/bin/tiup playground nightly --mode tikv-slim --kv 3 --without-monitor --kv.config $(shell pwd)/config/tikv-v1.toml --pd.config $(shell pwd)/config/pd.toml &
108108
while :; do
109109
echo "waiting cluster to be ready"
110110
[[ "$(curl -I http://127.0.0.1:2379/pd/api/v1/regions 2>/dev/null | head -n 1 | cut -d$' ' -f2)" -ne "405" ]] || break

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ test: unit-test integration-test
3333
doc:
3434
cargo doc --workspace --exclude tikv-client-proto --document-private-items --no-deps
3535

36-
tiup:
36+
tiup-v1:
3737
tiup playground nightly --mode tikv-slim --kv 3 --without-monitor --kv.config $(shell pwd)/config/tikv-v1.toml --pd.config $(shell pwd)/config/pd.toml &
3838

3939
tiup-v1ttl:

0 commit comments

Comments
 (0)