We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70006ae commit ebed8bfCopy full SHA for ebed8bf
.github/workflows/ci.yml
@@ -88,8 +88,9 @@ jobs:
88
run: curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh
89
- name: start tiup playground
90
run: |
91
- ~/.tiup/bin/tiup install tikv:nightly pd:nightly
92
- ~/.tiup/bin/tiup playground nightly --mode tikv-slim --kv 3 --without-monitor --kv.config config/tikv.toml --pd.config config/pd.toml &
+ # use latest stable version
+ ~/.tiup/bin/tiup install tikv pd
93
+ ~/.tiup/bin/tiup playground --mode tikv-slim --kv 3 --without-monitor --kv.config config/tikv.toml --pd.config config/pd.toml &
94
while :; do
95
echo "waiting cluster to be ready"
96
[[ "$(curl -I http://127.0.0.1:2379/pd/api/v1/regions 2>/dev/null | head -n 1 | cut -d$' ' -f2)" -ne "405" ]] || break
0 commit comments