Skip to content

Commit

Permalink
ci: remove tarantoolctl
Browse files Browse the repository at this point in the history
  • Loading branch information
0x501D committed Jan 19, 2024
1 parent 88251b9 commit 53c911e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/reusable_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ jobs:
sudo dpkg -i tarantool_*.deb tarantool-common_*.deb tarantool-dev_*.deb
tarantool --version
- name: Setup tt
run: |
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
sudo apt install -y tt
tt version
- name: Install requirements
run: ./deps.sh

Expand Down
7 changes: 4 additions & 3 deletions deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@

set -e

TTCTL=tt

if ! [ -x "$(command -v tt)" ]; then
TTCTL=tarantoolctl
else
TTCTL=tt
echo "error: tt is not found" >&2
exit 1
fi

# Test dependencies:
Expand Down

0 comments on commit 53c911e

Please sign in to comment.