Commit Diff


commit - cd753f0c65832100bafb30b471ae3c1583e8db19
commit + 00d2d60255bbcbe201155d56281ef42ea5f970b2
blob - 246223fa07dadf71215350e059ead65c5cf698c8
blob + 70b15e3048859b7e3efa7217132aa86150ba84c0
--- .github/workflows/check.yaml
+++ .github/workflows/check.yaml
@@ -20,6 +20,11 @@ jobs:
         with:
           tarantool-version: "2.10"
 
+      - name: Setup tt
+        run: |
+          curl -L https://tarantool.io/release/3/installer.sh | bash
+          sudo apt-get -y install tt
+
       - name: Setup dependencies
         run: make deps
 
blob - 6aad2e91e328076cab3ae8076c23d5b8d7704d84
blob + e996b335aa967b931603cd75c3e151f606d15dca
--- Makefile
+++ Makefile
@@ -3,14 +3,14 @@
 # `make -f /path/to/project/Makefile`.
 MAKEFILE_PATH := $(abspath $(lastword $(MAKEFILE_LIST)))
 PROJECT_DIR := $(patsubst %/,%,$(dir $(MAKEFILE_PATH)))
-ROCKS_BIN_DIR := $(shell tarantoolctl rocks config deploy_bin_dir)
+ROCKS_BIN_DIR := $(shell tt rocks config deploy_bin_dir)
 
 all: test
 
 deps:
-	@tarantoolctl rocks install luacheck 0.25.0 --server=https://rocks.tarantool.org/
-	@tarantoolctl rocks install luatest --server=https://rocks.tarantool.org/
-	@tarantoolctl rocks install https://raw.githubusercontent.com/ligurio/molly/dev/molly-scm-1.rockspec
+	@tt rocks install luacheck 0.25.0 --server=https://rocks.tarantool.org/
+	@tt rocks install luatest --server=https://rocks.tarantool.org/
+	@tt rocks install https://raw.githubusercontent.com/ligurio/molly/dev/molly-scm-1.rockspec
 
 check: luacheck