Skip to content

Commit

Permalink
install tiup
Browse files Browse the repository at this point in the history
Signed-off-by: okJiang <[email protected]>
  • Loading branch information
okJiang committed Oct 11, 2024
1 parent 546707d commit c2844b5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/integrations/realcluster/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,13 @@ tidy:
git diff go.mod go.sum | cat
git diff --quiet go.mod go.sum

check: test
check: tiup test

tiup:
# if tiup binary not exist, download it
if ! which tiup > /dev/null 2>&1; then \
curl --proto '=https' --tlsv1.2 -sSf https://tiup-mirrors.pingcap.com/install.sh | sh; \
fi

deploy: kill_cluster deploy_only

Expand Down

0 comments on commit c2844b5

Please sign in to comment.