Skip to content

Commit cab2b76

Browse files
last change for this
1 parent 57f5f8c commit cab2b76

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

.github/workflows/packing.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ jobs:
494494
- name: Install tarantool ${{ matrix.tarantool }}
495495
run: |
496496
apt install -y curl
497-
curl -L https://tarantool.io/release/3/installer.sh | bash
497+
curl -L https://tarantool.io/release/2/installer.sh | bash
498498
apt install -y tarantool tarantool-dev
499499
env:
500500
DEBIAN_FRONTEND: noninteractive
@@ -529,13 +529,29 @@ jobs:
529529

530530
- name: Install the crud module for testing purposes
531531
run: |
532+
curl -L https://tarantool.io/release/2/installer.sh | bash
533+
apt install -y tt
534+
tt rocks install crud
535+
if: matrix.target.dist != 'bookworm' && matrix.target.dist != 'noble'
536+
537+
- name: Install the crud module for testing purposes
538+
run: |
539+
. .venv/bin/activate
532540
curl -L https://tarantool.io/release/3/installer.sh | bash
533541
apt install -y tt
534542
tt rocks install crud
543+
if: matrix.target.dist == 'bookworm' || matrix.target.dist == 'noble'
544+
545+
- name: Run tests
546+
run: |
547+
make test-pure-install
548+
if: matrix.target.dist != 'bookworm' && matrix.target.dist != 'noble'
535549

536550
- name: Run tests
537551
run: |
552+
. .venv/bin/activate
538553
make test-pure-install
554+
if: matrix.target.dist == 'bookworm' || matrix.target.dist == 'noble'
539555

540556
publish_deb:
541557
if: startsWith(github.ref, 'refs/tags')

0 commit comments

Comments
 (0)