Skip to content

Commit ec6001d

Browse files
fixes from PR
1 parent 5488839 commit ec6001d

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/packing.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -99,12 +99,14 @@ jobs:
9999
- name: Install test requirements
100100
run: pip3 install -r requirements-test.txt
101101

102+
# Installation of the specific CMake version is a hotfix for
103+
# https://github.com/tarantool/checks/issues/64
102104
- name: Install the crud module for testing purposes
103105
run: |
104106
curl -L https://tarantool.io/release/2/installer.sh | bash
105107
sudo apt install -y tt
106108
pip3 install cmake==3.15.3
107-
tt rocks install crud 1.4.2
109+
tt rocks install crud
108110
109111
- name: Run tests
110112
run: make test-pure-install
@@ -345,7 +347,7 @@ jobs:
345347
curl -L https://tarantool.io/release/2/installer.sh | bash
346348
sudo dnf install -y tt
347349
pip3 install cmake==3.15.3
348-
tt rocks install crud 1.4.2
350+
tt rocks install crud
349351
350352
- name: Run tests
351353
run: make test-pure-install
@@ -465,6 +467,8 @@ jobs:
465467

466468
matrix:
467469
target:
470+
- os: debian
471+
dist: bullseye # 11
468472
# - os: debian
469473
# dist: bookworm # 12
470474
- os: ubuntu
@@ -525,7 +529,7 @@ jobs:
525529
curl -L https://tarantool.io/release/2/installer.sh | bash
526530
apt install -y tt
527531
pip3 install cmake==3.15.3
528-
tt rocks install crud 1.4.2
532+
tt rocks install crud
529533
530534
- name: Run tests
531535
run: |

.github/workflows/reusable_testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ jobs:
4444
curl -L https://tarantool.io/release/2/installer.sh | bash
4545
sudo apt install -y tt
4646
pip3 install cmake==3.15.3
47-
tt rocks install crud 1.4.2
47+
tt rocks install crud
4848
4949
- run: make test

.github/workflows/testing.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ jobs:
6464
tt version
6565
tt init
6666
67-
# Waiting until `checks` repo will be updated.
67+
# Installation of the specific CMake version is a hotfix for
68+
# https://github.com/tarantool/checks/issues/64
6869
- name: Install old CMake
6970
run: pip3 install cmake==3.15.3
7071

@@ -123,7 +124,7 @@ jobs:
123124
run: pip3 install -r requirements-test.txt
124125

125126
- name: Install the crud module for testing purposes
126-
run: tt rocks install crud 1.4.2
127+
run: tt rocks install crud
127128

128129
- name: Run tests
129130
run: make test
@@ -190,7 +191,7 @@ jobs:
190191
curl -L https://tarantool.io/release/2/installer.sh | bash
191192
sudo apt install -y tt
192193
pip3 install cmake==3.15.3
193-
tt rocks install crud 1.4.2 TARANTOOL_DIR=$PWD/tarantool-enterprise
194+
tt rocks install crud TARANTOOL_DIR=$PWD/tarantool-enterprise
194195
195196
- name: Run tests
196197
run: |
@@ -251,7 +252,7 @@ jobs:
251252
curl -L https://tarantool.io/release/2/installer.sh | bash
252253
sudo apt install -y tt
253254
pip3 install cmake==3.15.3
254-
tt rocks install crud 1.4.2
255+
tt rocks install crud
255256
256257
- name: Run tests
257258
run: make test-pure-install

0 commit comments

Comments
 (0)