Skip to content

Commit

Permalink
ci: build tarantool dynamically
Browse files Browse the repository at this point in the history
TLS doesn't work without tarantool built dynamically. After the patch
build was changed in ci.
  • Loading branch information
themilchenko committed Dec 26, 2024
1 parent 8026c3e commit ecc7883
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,15 @@ jobs:

runs-on: ubuntu-22.04
steps:
- name: Setup tt
run: |
curl -L https://tarantool.io/release/3/installer.sh | bash
sudo apt install -y tt
tt version
- name: Install tarantool ${{ matrix.tarantool }}
if: startsWith(matrix.tarantool, 'debug') != true
uses: tarantool/setup-tarantool@v3
with:
tarantool-version: ${{ matrix.tarantool }}
run: tt install tarantool ${{ matrix.tarantool }} --dynamic

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

- name: Setup tt
run: |
curl -L https://tarantool.io/release/3/installer.sh | bash
sudo apt install -y tt
tt version
- name: Install requirements
run: make deps depname=coverage
if: steps.cache-rocks.outputs.cache-hit != 'true'
Expand Down

0 comments on commit ecc7883

Please sign in to comment.