Skip to content

Commit c51d15a

Browse files
committed
test: bump test-run to aaba736
NO_DOC=draft NO_TEST=draft
1 parent fc86f4c commit c51d15a

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/workflows/fast_testing.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,5 +100,24 @@ jobs:
100100
- name: Install test requirements
101101
run: pip3 install --user -r test-run/requirements.txt
102102

103+
- name: Setup tt
104+
run: |
105+
curl -L https://tarantool.io/release/2/installer.sh | sudo bash
106+
sudo apt install -y tt
107+
tt version
108+
109+
# Setup luatest
110+
- name: Cache rocks
111+
uses: actions/cache@v4
112+
id: cache-rocks
113+
with:
114+
path: .rocks/
115+
key: test-rocks-${{ hashFiles('*.rockspec') }}-06
116+
-
117+
run: |
118+
tt rocks install luatest 1.2.1
119+
tt rocks install luacheck 0.26.0
120+
if: steps.cache-rocks.outputs.cache-hit != 'true'
121+
103122
- run: cmake .
104123
- run: make test-force

0 commit comments

Comments
 (0)