File tree 1 file changed +17
-1
lines changed
1 file changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -494,7 +494,7 @@ jobs:
494
494
- name : Install tarantool ${{ matrix.tarantool }}
495
495
run : |
496
496
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
498
498
apt install -y tarantool tarantool-dev
499
499
env :
500
500
DEBIAN_FRONTEND : noninteractive
@@ -529,13 +529,29 @@ jobs:
529
529
530
530
- name : Install the crud module for testing purposes
531
531
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
532
540
curl -L https://tarantool.io/release/3/installer.sh | bash
533
541
apt install -y tt
534
542
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'
535
549
536
550
- name : Run tests
537
551
run : |
552
+ . .venv/bin/activate
538
553
make test-pure-install
554
+ if : matrix.target.dist == 'bookworm' || matrix.target.dist == 'noble'
539
555
540
556
publish_deb :
541
557
if : startsWith(github.ref, 'refs/tags')
You can’t perform that action at this time.
0 commit comments