Skip to content

Commit 9b1ccfd

Browse files
WIP
1 parent e029de2 commit 9b1ccfd

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/fast_testing.yml

+13-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,17 @@ jobs:
2626
with:
2727
tarantool-version: ${{ matrix.tarantool }}
2828

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+
2940
- name: Clone the module
3041
uses: actions/checkout@v4
3142
with:
@@ -48,10 +59,10 @@ jobs:
4859
- name: Build module
4960
run: |
5061
export MAKEFLAGS=-j8
51-
tarantoolctl rocks STATIC_BUILD=ON make
62+
tt --system --verbose rocks --global --verbose STATIC_BUILD=ON make
5263
5364
- 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 &
5566

5667
- name: Run test
5768
run: KAFKA_HOST=localhost:9092 pytest tests

0 commit comments

Comments
 (0)