Skip to content

Commit e1d2ac7

Browse files
install cmake 3.15.3 before crud
1 parent d39a69c commit e1d2ac7

File tree

3 files changed

+13
-10
lines changed

3 files changed

+13
-10
lines changed

.github/workflows/packing.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,17 +96,14 @@ jobs:
9696
- name: Install the package from pip artifacts
9797
run: pip3 install pip_dist/*.whl
9898

99-
# waiting `checks` repo will updated to use newest CMake
100-
- name: Install old CMake
101-
run: pip3 install cmake==3.15.3
102-
10399
- name: Install test requirements
104100
run: pip3 install -r requirements-test.txt
105101

106102
- name: Install the crud module for testing purposes
107103
run: |
108104
curl -L https://tarantool.io/release/2/installer.sh | bash
109105
sudo apt install -y tt
106+
pip3 install cmake==3.15.3
110107
tt rocks install crud 1.4.2
111108
112109
- name: Run tests
@@ -347,6 +344,7 @@ jobs:
347344
run: |
348345
curl -L https://tarantool.io/release/2/installer.sh | bash
349346
sudo dnf install -y tt
347+
pip3 install cmake==3.15.3
350348
tt rocks install crud 1.4.2
351349
352350
- name: Run tests
@@ -526,6 +524,7 @@ jobs:
526524
run: |
527525
curl -L https://tarantool.io/release/2/installer.sh | bash
528526
apt install -y tt
527+
pip3 install cmake==3.15.3
529528
tt rocks install crud 1.4.2
530529
531530
- name: Run tests

.github/workflows/reusable_testing.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
run: |
4444
curl -L https://tarantool.io/release/2/installer.sh | bash
4545
sudo apt install -y tt
46+
pip3 install cmake==3.15.3
4647
tt rocks install crud 1.4.2
4748
4849
- run: make test

.github/workflows/testing.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,12 @@ jobs:
118118
- name: Install test requirements
119119
run: pip3 install -r requirements-test.txt
120120

121-
# Temporary solution, waiting for the `checks` module update.
121+
# Waiting until `checks` repo will be updated.
122122
- name: Install old CMake
123-
run: |
124-
cmake --version
125-
pip3 install cmake==3.10.3
123+
run: pip3 install cmake==3.15.3
126124

127125
- name: Install the crud module for testing purposes
128-
run: |
129-
tt rocks install crud 1.4.2
126+
run: tt rocks install crud 1.4.2
130127

131128
- name: Run tests
132129
run: make test
@@ -192,6 +189,7 @@ jobs:
192189
source tarantool-enterprise/env.sh
193190
curl -L https://tarantool.io/release/2/installer.sh | bash
194191
sudo apt install -y tt
192+
pip3 install cmake==3.15.3
195193
tt rocks install crud 1.4.2 TARANTOOL_DIR=$PWD/tarantool-enterprise
196194
197195
- name: Run tests
@@ -241,13 +239,18 @@ jobs:
241239
- name: Install the package with pip
242240
run: pip3 install git+$GITHUB_SERVER_URL/$GITHUB_REPOSITORY@$GITHUB_REF
243241

242+
# Waiting until `checks` repo will be updated.
243+
- name: Install old CMake
244+
run: pip3 install cmake==3.15.3
245+
244246
- name: Install test requirements
245247
run: pip3 install -r requirements-test.txt
246248

247249
- name: Install the crud module for testing purposes
248250
run: |
249251
curl -L https://tarantool.io/release/2/installer.sh | bash
250252
sudo apt install -y tt
253+
pip3 install cmake==3.15.3
251254
tt rocks install crud 1.4.2
252255
253256
- name: Run tests

0 commit comments

Comments
 (0)