Skip to content

Commit 140ac4d

Browse files
try to remove tarantoolctl
1 parent 82cbd9f commit 140ac4d

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/check.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ jobs:
1414
- uses: actions/checkout@v4
1515

1616
- name: Setup Tarantool
17-
uses: tarantool/setup-tarantool@v1
17+
uses: tarantool/setup-tarantool@v3
1818
with:
19-
tarantool-version: '2.11'
19+
tarantool-version: '3.3'
2020

2121
- name: Setup luacheck
22-
run: tarantoolctl rocks install luacheck 0.25.0
22+
run: |
23+
sudo apt -y install tt
24+
tt rocks install luacheck 0.25.0
2325
2426
- run: cmake -S . -B build
2527

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,10 @@ jobs:
5050
# [1]: https://github.com/luarocks/luarocks/wiki/Types-of-rocks
5151
- uses: tarantool/setup-tarantool@v3
5252
with:
53-
tarantool-version: '2.11'
54-
- run: tarantoolctl rocks pack memcached-${{ env.TAG }}-1.rockspec
53+
tarantool-version: '3.3'
54+
- run: |
55+
sudo apt install -y tt
56+
tt rocks pack memcached-${{ env.TAG }}-1.rockspec
5557
5658
# Upload .rockspec and .src.rock.
5759
- uses: tarantool/rocks.tarantool.org/github-action@master

0 commit comments

Comments
 (0)