File tree 1 file changed +13
-2
lines changed
1 file changed +13
-2
lines changed Original file line number Diff line number Diff line change 26
26
with :
27
27
tarantool-version : ${{ matrix.tarantool }}
28
28
29
+ - name : Setup tt
30
+ run : |
31
+ curl -L https://tarantool.io/release/3/installer.sh | sudo bash
32
+ sudo apt update
33
+ sudo apt install -y tt
34
+
35
+ - name : Setup Tarantool master
36
+ run : |
37
+ tt --system --verbose init
38
+ tt --system --verbose install tarantool pr/10020
39
+
29
40
- name : Clone the module
30
41
uses : actions/checkout@v4
31
42
with :
@@ -48,10 +59,10 @@ jobs:
48
59
- name : Build module
49
60
run : |
50
61
export MAKEFLAGS=-j8
51
- tarantoolctl rocks STATIC_BUILD=ON make
62
+ tt --system --verbose --local rocks STATIC_BUILD=ON make
52
63
53
64
- name : Run tarantool application
54
- run : TT_LOG=tarantool.log tarantool tests/app.lua > output.log 2>&1 &
65
+ run : TT_LOG=tarantool.log /opt/tarantool/bin/ tarantool tests/app.lua > output.log 2>&1 &
55
66
56
67
- name : Run test
57
68
run : KAFKA_HOST=localhost:9092 pytest tests
You can’t perform that action at this time.
0 commit comments