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 88251b9 commit aa363c7Copy full SHA for aa363c7
.github/workflows/reusable_test.yml
@@ -31,6 +31,12 @@ jobs:
31
sudo dpkg -i tarantool_*.deb tarantool-common_*.deb tarantool-dev_*.deb
32
tarantool --version
33
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
+
40
- name: Install requirements
41
run: ./deps.sh
42
deps.sh
@@ -3,10 +3,11 @@
3
4
set -e
5
6
+TTCTL=tt
7
8
if ! [ -x "$(command -v tt)" ]; then
- TTCTL=tarantoolctl
-else
9
- TTCTL=tt
+ echo "error: tt is not found" >&2
10
+ exit 1
11
fi
12
13
# Test dependencies:
0 commit comments