Skip to content

Commit 4f7b890

Browse files
committed
ci: build tarantool dynamically
TLS doesn't work without tarantool built dynamically. After the patch build was changed in ci.
1 parent 1ff7617 commit 4f7b890

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/testing.yaml

+7-9
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,15 @@ jobs:
2727

2828
runs-on: ubuntu-22.04
2929
steps:
30+
- name: Setup tt
31+
run: |
32+
curl -L https://tarantool.io/release/3/installer.sh | bash
33+
sudo apt install -y tt
34+
tt version
35+
3036
- name: Install tarantool ${{ matrix.tarantool }}
3137
if: startsWith(matrix.tarantool, 'debug') != true
32-
uses: tarantool/setup-tarantool@v3
33-
with:
34-
tarantool-version: ${{ matrix.tarantool }}
38+
run: tt install tarantool ${{ matrix.tarantool }} --dynamic
3539

3640
- name: Create variables for Tarantool ${{ matrix.tarantool }}
3741
if: startsWith(matrix.tarantool, 'debug')
@@ -88,12 +92,6 @@ jobs:
8892
path: .rocks/
8993
key: "cache-rocks-${{ matrix.tarantool }}${{ env.VERSION_POSTFIX }}"
9094

91-
- name: Setup tt
92-
run: |
93-
curl -L https://tarantool.io/release/3/installer.sh | bash
94-
sudo apt install -y tt
95-
tt version
96-
9795
- name: Install requirements
9896
run: make deps depname=coverage
9997
if: steps.cache-rocks.outputs.cache-hit != 'true'

0 commit comments

Comments
 (0)