Skip to content

Commit c4cdc3c

Browse files
fix tt installation in check/publish
1 parent 140ac4d commit c4cdc3c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/check.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ jobs:
2020

2121
- name: Setup luacheck
2222
run: |
23-
sudo apt -y install tt
23+
sudo apt update
24+
sudo apt install curl
25+
curl -L https://tarantool.io/release/3/installer.sh | bash
26+
sudo apt install -y tt
2427
tt rocks install luacheck 0.25.0
2528
2629
- run: cmake -S . -B build

.github/workflows/publish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ jobs:
5252
with:
5353
tarantool-version: '3.3'
5454
- run: |
55+
sudo apt update
56+
sudo apt install curl
57+
curl -L https://tarantool.io/release/3/installer.sh | bash
5558
sudo apt install -y tt
5659
tt rocks pack memcached-${{ env.TAG }}-1.rockspec
5760

0 commit comments

Comments
 (0)