Skip to content

Commit aa363c7

Browse files
0x501DDifferentialOrange
authored andcommitted
ci: remove tarantoolctl
Part of tarantool/tarantool#9443
1 parent 88251b9 commit aa363c7

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/reusable_test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,12 @@ jobs:
3131
sudo dpkg -i tarantool_*.deb tarantool-common_*.deb tarantool-dev_*.deb
3232
tarantool --version
3333
34+
- name: Setup tt
35+
run: |
36+
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
37+
sudo apt install -y tt
38+
tt version
39+
3440
- name: Install requirements
3541
run: ./deps.sh
3642

deps.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33

44
set -e
55

6+
TTCTL=tt
7+
68
if ! [ -x "$(command -v tt)" ]; then
7-
TTCTL=tarantoolctl
8-
else
9-
TTCTL=tt
9+
echo "error: tt is not found" >&2
10+
exit 1
1011
fi
1112

1213
# Test dependencies:

0 commit comments

Comments
 (0)